Releases: aio-libs/multidict
Releases · aio-libs/multidict
multidict 4.3.0 release
Changes
- Fix pep 484 stub file
multidict 4.2.0 release
No new features but the library provides typing information for tools like mypy
(see https://www.python.org/dev/peps/pep-0561/ for details.)
4.2.0 (2018-01-15)
- Publish
py.typed
flag for type hinting analyzers (mypy
etc).
multidict 4.1.0 release
Change
- Fix key casing in Pure Python implementation of
:py:class:CIMultiDict
(:pr:202
)
multidict 4.0.0 release
Changes
- Accept multiple keys in :py:meth:
MultiDict.update
and
:py:meth:CIMultiDict.update
(:pr:199
)
multidict 3.3.0
multidict 3.2.0 released
3.1.1
3.1.0
multidict 3.0.0
Changes
-
Refactor internal data structures: main dict operations are about
100% faster now. -
Preserve order on multidict updates #68
Updates are
md[key] = val
andmd.update(...)
calls.Now the last entry is replaced with new key/value pair, all
previous occurrences are removed.If key is not present in dictionary the pair is added to the end
-
Force keys to
str
instances #88 -
Implement
.popall(key[, default])
#84 -
.pop()
removes only first occurence,.popone()
added #92 -
Implement dict's version #86
-
Proxies are not pickable anymore #77
Mulidict 2.1.5
Changes
- binary wheels for python 3.6 are added