Skip to content

Commit 475f6be

Browse files
committed
Intermediate changes
commit_hash:c3dfa83d652d97bdc5a76419f4dc85da476da240
1 parent e479202 commit 475f6be

22 files changed

+1323
-663
lines changed

contrib/python/multidict/.dist-info/METADATA

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.4
22
Name: multidict
3-
Version: 6.3.0
3+
Version: 6.4.3
44
Summary: multidict implementation
55
Home-page: https://github.com/aio-libs/multidict
66
Author: Andrew Svetlov
@@ -137,7 +137,12 @@ e.g.:
137137
Please note, the pure Python (uncompiled) version is about 20-50 times slower depending on
138138
the usage scenario!!!
139139

140+
For extension development, set the ``MULTIDICT_DEBUG_BUILD`` environment variable to compile
141+
the extensions in debug mode:
140142

143+
.. code-block:: console
144+
145+
$ MULTIDICT_DEBUG_BUILD=1 pip install multidict
141146

142147
Changelog
143148
---------

contrib/python/multidict/README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,12 @@ e.g.:
104104
Please note, the pure Python (uncompiled) version is about 20-50 times slower depending on
105105
the usage scenario!!!
106106

107+
For extension development, set the ``MULTIDICT_DEBUG_BUILD`` environment variable to compile
108+
the extensions in debug mode:
107109

110+
.. code-block:: console
111+
112+
$ MULTIDICT_DEBUG_BUILD=1 pip install multidict
108113
109114
Changelog
110115
---------

contrib/python/multidict/multidict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"getversion",
2323
)
2424

25-
__version__ = "6.3.0"
25+
__version__ = "6.4.3"
2626

2727

2828
if TYPE_CHECKING or not USE_EXTENSIONS:

0 commit comments

Comments
 (0)