Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-multidict-6.0.4-150400.7.3.10 RPM for x86_64

From OpenSuSE Leap 15.6 for x86_64

Name: python311-multidict Distribution: SUSE Linux Enterprise 15
Version: 6.0.4 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150400.7.3.10 Build date: Wed Oct 4 00:22:34 2023
Group: Unspecified Build host: h01-ch4d
Size: 155673 Source RPM: python-multidict-6.0.4-150400.7.3.10.src.rpm
Packager: https://www.suse.com/
Url: https://github.com/aio-libs/multidict
Summary: Multidict implementation
Multidicts are useful for working with HTTP headers, URL query
arguments, etc.

The code was extracted from the aiohttp library.

Provides

Requires

License

Apache-2.0

Changelog

* Fri Apr 21 2023 dmueller@suse.com
  - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 mcepl@suse.com
  - Make calling of %{sle15modernpython} optional.
* Mon Jan 02 2023 dmueller@suse.com
  - update to 6.0.4:
    * Fixed a type annotations regression introduced in v6.0.2 under Python
      versions <3.10. It was caused by importing certain types only available
      in newer versions. (:issue:`798`)
* Wed Dec 07 2022 yarunachalam@suse.com
  - Update to 6.0.3:
    * Features
      Declared the official support for Python 3.11 — by @mlegner. (#872)
* Thu Feb 24 2022 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 2020 dmueller@suse.com
  - update to 5.1.0:
    - Support ``GenericAliases`` (``MultiDict[str]``) for Python 3.9+
    `#553 <https://github.com/aio-libs/multidict/issues/553>`_
* Sat Nov 21 2020 jayvdb@gmail.com
  - Update to v5.0.2
    * No runtime changes
* Thu Sep 17 2020 dmueller@suse.com
  - update to 4.7.6:
    * Fixed an issue with some versions of the ``wheel`` dist
      failing because of being unable to detect the license file.
* Fri Mar 13 2020 tchvatal@suse.com
  - Fix fdupes call
* Mon Mar 09 2020 tchvatal@suse.com
  - Update to 4.7.5:
    * various fixes for python 3.8 support
* Wed May 29 2019 mcalabkova@suse.com
  - update to 4.5.2
    * Multidict views ported from Cython to C extension
    4.4.*
    * Restore Python 3.4 support
    * Rewrite C implementation to use C pair list.
    * Fix update order when both arg and kwargs are used.
* Thu Mar 07 2019 tchvatal@suse.com
  - Fix fdupes macro expansion
* Mon Sep 03 2018 hpj@urpla.net
  - don't depend on a certain python devel package, avoids:
      nothing provides python2-devel >= 3.4.1
    such a version will never exist!
* Wed Aug 29 2018 tchvatal@suse.com
  - Update to 4.3.1:
    * No obvious changelog
* Tue Apr 17 2018 tchvatal@suse.com
  - Enable testsuite
* Tue Apr 17 2018 arun@gmx.de
  - update to version 4.2.0:
    * Publish py.typed flag for type hinting analyzers (mypy etc).
* Sat Feb 10 2018 arun@gmx.de
  - update to version 4.1.0:
    * Fix key casing in Pure Python implementation of CIMultiDict (PR
      [#202])
* Wed Jan 17 2018 arun@gmx.de
  - specfile:
    * update copyright year
    * CHANGES.rst -> docs/changes.rst
  - update to version 4.0.0:
    * Accept multiple keys in MultiDict.update() and
      CIMultiDict.update() (PR #199)
* Fri Nov 03 2017 arun@gmx.de
  - specfile:
    * don't package .c files
  - update to version 3.3.2:
    * Fix tarball (again)
  - changes from version 3.3.1:
    * Include .c files in tarball (#181)
* Thu Nov 02 2017 arun@gmx.de
  - update to version 3.3.0:
    * Introduce abstract base classes (#102)
    * Publish OSX binary wheels (#153)
* Tue Sep 19 2017 sean.marlow@suse.com
  - Update to version 3.2.0:
    + Fix pickling
    + Fix equality check when other contains more keys
    + Fix CIMultiDict copy
  - Pre-compiled shared libraries have been removed from sdist.
* Wed Jul 19 2017 sean.marlow@suse.com
  - Use package from PyPi via py2pack instead of Github.
    The packages are not the same.
  - Remove compiled shared libraries from package prior to build.
* Thu Jul 13 2017 sean.marlow@suse.com
  - Update to version 3.1.1:
    - Fix #105: Remove memory leak in istr implementation
  - Update to version 3.1.0:
    - Fix #99: raise RuntimeError on dict iterations if the dict was changed
    - Update __init__.pyi signatures
  - Update to version 3.0.0:
    - Refactor internal data structures: main dict operations are about 100% faster now.
    - Preserve order on multidict updates #68 Updates are md[key] =
      val and md.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
  - Update to version 2.1.7:
    - Fix import warning on Python 3.6 #79
  - Update to version 2.1.6:
    - Rebuild the library for fixning missing __spec__ attribute #79
  - Update to version 2.1.5:
    - Build Python 3.6 binary wheels
* Thu Jul 13 2017 sean.marlow@suse.com
  - Move to single spec python3 only.
* Sat Feb 18 2017 jengelh@inai.de
  - Description update
* Mon Jan 09 2017 arun@gmx.de
  - specfile:
    * update copyright year
  - update to version 2.1.4:
    * Remove LICENSE filename extension @ MANIFEST.in file #31
  - changes from version 2.1.3 :
    * Add a fastpath for multidict extending by multidict
* Sun Sep 25 2016 arun@gmx.de
  - initial version

Files

/usr/lib64/python3.11/site-packages/multidict
/usr/lib64/python3.11/site-packages/multidict-6.0.4-py3.11.egg-info
/usr/lib64/python3.11/site-packages/multidict-6.0.4-py3.11.egg-info/PKG-INFO
/usr/lib64/python3.11/site-packages/multidict-6.0.4-py3.11.egg-info/SOURCES.txt
/usr/lib64/python3.11/site-packages/multidict-6.0.4-py3.11.egg-info/dependency_links.txt
/usr/lib64/python3.11/site-packages/multidict-6.0.4-py3.11.egg-info/top_level.txt
/usr/lib64/python3.11/site-packages/multidict/__init__.py
/usr/lib64/python3.11/site-packages/multidict/__init__.pyi
/usr/lib64/python3.11/site-packages/multidict/__pycache__
/usr/lib64/python3.11/site-packages/multidict/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_abc.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_abc.cpython-311.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_compat.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_compat.cpython-311.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_multidict_base.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_multidict_base.cpython-311.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_multidict_py.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/multidict/__pycache__/_multidict_py.cpython-311.pyc
/usr/lib64/python3.11/site-packages/multidict/_abc.py
/usr/lib64/python3.11/site-packages/multidict/_compat.py
/usr/lib64/python3.11/site-packages/multidict/_multidict.cpython-311-x86_64-linux-gnu.so
/usr/lib64/python3.11/site-packages/multidict/_multidict_base.py
/usr/lib64/python3.11/site-packages/multidict/_multidict_py.py
/usr/lib64/python3.11/site-packages/multidict/py.typed
/usr/share/doc/packages/python311-multidict
/usr/share/doc/packages/python311-multidict/README.rst
/usr/share/doc/packages/python311-multidict/changes.rst
/usr/share/licenses/python311-multidict
/usr/share/licenses/python311-multidict/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Apr 26 23:37:53 2024