11
0

Accepting request 957229 from system:homeautomation:home-assistant:unstable

- update to 6.0.2:
  - Use ``METH_FASTCALL`` where it makes sense.
    ``MultiDict.add()`` is 2.2 times faster now, ``CIMultiDict.add()`` is 1.5 times faster.
    The same boost is applied to ``get*()``, ``setdefault()``, and ``pop*()`` methods. (:issue:`681`)
  - Fixed type annotations for keys of multidict mapping classes. (:issue:`644`)
  - Support Multidict[int] for pure-python version.
    ``__class_getitem__`` is already provided by C Extension, making it work with the pure-extension too. (:issue:`678`)
  - Dropped Python 3.6 support (:issue:`680`)

OBS-URL: https://build.opensuse.org/request/show/957229
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-multidict?expand=0&rev=36
This commit is contained in:
2022-02-24 11:19:59 +00:00
committed by Git OBS Bridge
parent 1d422adf83
commit 6a5b227532
4 changed files with 18 additions and 6 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Feb 24 08:14:48 UTC 2022 - Adrian Schröter <adrian@suse.de>
- update to 6.0.2:
- Use ``METH_FASTCALL`` where it makes sense.
``MultiDict.add()`` is 2.2 times faster now, ``CIMultiDict.add()`` is 1.5 times faster.
The same boost is applied to ``get*()``, ``setdefault()``, and ``pop*()`` methods. (:issue:`681`)
- Fixed type annotations for keys of multidict mapping classes. (:issue:`644`)
- Support Multidict[int] for pure-python version.
``__class_getitem__`` is already provided by C Extension, making it work with the pure-extension too. (:issue:`678`)
- Dropped Python 3.6 support (:issue:`680`)
-------------------------------------------------------------------
Sun Dec 20 09:35:53 UTC 2020 - Dirk Müller <dmueller@suse.com>