Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/451.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Expose ``getversion()`` function.
3 changes: 3 additions & 0 deletions multidict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"CIMultiDict",
"upstr",
"istr",
"getversion"
)

__version__ = "4.7.2"
Expand All @@ -31,6 +32,7 @@
MultiDict,
CIMultiDict,
istr,
getversion,
)
except ImportError: # pragma: no cover
from ._multidict_py import (
Expand All @@ -39,6 +41,7 @@
MultiDict,
CIMultiDict,
istr,
getversion,
)


Expand Down