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

python311-marshmallow-3.19.0-150400.9.3.8 RPM for noarch

From OpenSuSE Leap 15.6 for noarch

Name: python311-marshmallow Distribution: SUSE Linux Enterprise 15
Version: 3.19.0 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150400.9.3.8 Build date: Wed Oct 4 00:54:43 2023
Group: Development/Languages/Python Build host: h01-ch3b
Size: 3300882 Source RPM: python-marshmallow-3.19.0-150400.9.3.8.src.rpm
Packager: https://www.suse.com/
Url: https://marshmallow.readthedocs.io/
Summary: ORM/ODM/framework-agnostic library to convert datatypes from/to Python types
marshmallow is an ORM/ODM/framework-agnostic library for converting complex
datatypes, such as objects, to and from native Python datatypes.

Provides

Requires

License

BSD-3-Clause AND MIT

Changelog

* Sun Apr 23 2023 mcepl@suse.com
  - Switch documentation to be within the main package.
* 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.
* Thu Mar 16 2023 dmueller@suse.com
  - rename docs subpackage to the more common doc name
* Wed Mar 15 2023 mcepl@suse.com
  - We want "modern" Sphinx on SLE-15, not the 3.6-based one.
* Fri Dec 02 2022 yarunachalam@suse.com
  - Update to 3.19.0
    * Add timestamp and timestamp_ms formats to fields.DateTime (#612). Thanks @vgavro for    the suggestion and thanks @vanHoi for the PR.
* Fri Oct 28 2022 yarunachalam@suse.com
  - Update to 3.18.0 (2022-09-15)¶
    Features:
    Add Enum field (#2017) and (#2044).
    Bug fixes:
    Fix typing in Field._serialize signature (#2046).
* Thu Sep 29 2022 yarunachalam@suse.com
  - Update to 3.17.1 (2022-08-22)
    Bug fixes:
    Add return type to fields.Email.__init__ (#2018). Thanks @kkirsche for the PR.
    Add missing type hint to IPInterface __init__ (#2036).
  - Update to 3.17.0 (2022-06-26)
    Features:
    Support serialization as float in TimeDelta field (#1998). Thanks @marcosatti for the PR.
    Add messages_dict property to ValidationError to facilitate type checking (#1976). Thanks @sirosen for the PR.
  - Update to 3.16.0 (2022-05-29)
    Features:
    Raise ValueError if an invalid value is passed to the unknown argument (#1721, #1732). Thanks @sirosen for the PR.
    Other changes:
    Set lower bound for packaging requirement (#1957). Thanks @MatthewNicolTR for reporting and thanks @sirosen for the PR.
    Improve warning messages by passing stacklevel (#1986). Thanks @tirkarthi for the PR.
  - Update to 3.15.0 (2022-03-12)
    Features:
    Allow passing a dict to fields.Nested (#1935). Thanks @sirosen for the PR.
    Other changes:
    distutils deprecation warning in Python 3.10 (#1903). Thanks @kkirsche for the PR.
    Add py310 to black target-version (#1921).
    Drop support for Python 3.6 (#1923).
* Sun May 29 2022 simmphonie@opensuse.org
  - Update to 3.14.1 (2021-11-13)
    * Fix publishing type hints per PEP-561 (#1905). Thanks @bwindsor for the catch and patch.
  - Release 3.14.0 (2021-10-17)
    * Fix fields.TimeDelta serialization precision (#1865). Thanks @yarsanich for reporting.
    * Fix type-hints for `data` arg in `Schema.validate` to accept list of
      dictionaries (#1790, #1868). Thanks @yourun-proger for PR.
    * Improve warning when passing metadata as keyword arguments (#1882).
      Thanks @traherom for the PR.
    * Don’t build universal wheels. We don’t support Python 2 anymore.
      (#1860) Thanks @YKdvd for reporting.
    * Make the build reproducible (#1862).
    * Drop support for Python 3.5 (#1863).
    * Test against Python 3.10 (#1888).
  - Release 3.13.0 (2021-07-21)
    * Replace missing/default field parameters with load_default/dump_default (#1742).
      Thanks @sirosen for the PR.
    * The use of missing/default field parameters is deprecated and will be removed
    * in marshmallow 4. load_default/dump_default should be used instead.
  - Release 3.12.2 (2021-07-06)
    * Don’t expose Fields as Schema attributes. This reverts a change
      introduced in 3.12.0 that causes issues when field names conflict
      with Schema attributes or methods. Fieldss are still accessible on a
      Schema instance through the fields attribute. (#1843)
  - Release 3.12.1 (2021-05-10)
    * Fix bug that raised an AttributeError when instantiating a Schema with a
      field named parent (#1808). Thanks @flying-sheep for reporting and helping with the fix.
  - Release 3.12.0 (2021-05-09)
    * Add validate.And (#1768). Thanks @rugleb for the suggestion.
    * Add type annotations to marshmallow.decorators (#1788, #1789). Thanks @michaeldimchuk for the PR.
    * Let Fields be accessed by name as Schema attributes (#1631).
    * Improve types in marshmallow.validate (#1786).
    * Make marshmallow.validate.Validator an abstract base class (#1786).
    * Remove unnecessary list cast (#1785).
* Thu Apr 22 2021 code@bnavigator.de
  - Update to 3.11.1
    * Fix treatment of dotted keys when unknown=INCLUDE (#1506).
      Thanks @rbu for reporting and thanks @sirosen for the fix
      (#1745).
  - Release 3.11.0
    * Add fields.IPInterface, fields.IPv4Interface, and
      IPv6Interface (#1733). Thanks @madeinoz67 for the suggestion
      and the PR.
    * Raise AttributeError for missing methods when using fields.
      Method (#1675). Thanks @lassandroan.
    * Remove unnecessary hasattr and getattr checks in Field (#1770).
  - Release 3.10.0
    * Passing field metadata via keyword arguments is deprecated and
      will be removed in marshmallow 4 (#1350). Use the explicit
      metadata=... argument instead. Thanks @sirosen.
  - Release 3.9.1
    * Cast to mapping type in Mapping.serialize and Mapping.
      deserialize (#1685).
    * Fix bug letting Dict pass invalid dict on deserialization when
      no key or value Field is specified (#1685).
  - Release 3.9.0
    * Add format argument to fields.Time and timeformat class Meta
      option (#686). Thanks @BennyAlex for the suggestion and thanks
      @infinityxxx for the PR.
    * Remove usage of implicit typing.Optional (#1663). Thanks
      @nadega for the PR.
  - Release 3.8.0
    * Add fields.IP, fields.IPv4 and fields.IPv6 (#1485). Thanks
      @mgetka for the PR.
    * Fix typing in AwareDateTime (#1658). Thanks @adithyabsk for
      reporting.
  - Use the python3 sphinx_build do build the docs
    gh#openSUSE/python-rpm-macros#109
* Fri Aug 21 2020 steven.kowalik@suse.com
  - Update to 3.7.1:
    * Deprecations:
      + `marshmallow.pprint` is deprecated and will be removed in marshmallow 4 (:issue:`1588`).
    * Features:
      + Add ``validators.ContainsNoneOf`` (:issue:`1528`).
    * Bug fixes:
      + Fix typing in ``class_registry`` (:pr:`1574`). Thanks :user:`mahenzon`.
      + Fix passing ``only`` and ``exclude`` to ``Nested`` with an ordered ``Schema`` (:pr:`1627`).
      + ``fields.Boolean`` correctly serializes non-hashable types (:pr:`1633`).
  - Refresh patch python-marshmallow-no-version-warning.patch
* Wed Apr 01 2020 pgajdos@suse.com
  - version update to 3.5.1
    - Includes bug fix from 2.21.0.
    - Fix list of nullable nested fields ``List(Nested(Field, allow_none=True)``
      (:issue:`1497`). Because this fix reverts an optimization introduced to
      speed-up serialization and deserialization of lists of nested fields, a
      negative impact on performance in this specific case is expected.
    - Improve type coverage (:issue:`1479`). Thanks :user:`Reskov`.
    - Fix typing for ``data`` param of ``Schema.load`` and ``ValidationError`` (:issue:`1492`).
      Thanks :user:`mehdigmira` for reporting and thanks :user:`dfirst` for the PR.
    - Remove unnecessary typecasts (:pr:`1500`). Thanks :user:`hukkinj1`.
    - Remove useless ``_serialize`` override in ``UUID`` field (:pr:`1489`).
    - ``fields.Nested`` may take a callable that returns a schema instance.
      Use this to resolve order-of-declaration issues when schemas nest each other (:issue:`1146`).
    - Passing the string ``"self"`` to ``fields.Nested`` is deprecated.
      Use a callable instead.
    - Fix typing for ``Number._format_num`` (:pr:`1466`). Thanks :user:`hukkinj1`.
    - Make mypy stricter and remove dead code (:pr:`1467`). Thanks again, :user:`hukkinj1`.
* Wed Nov 13 2019 sebix+novell.com@sebix.at
  - Update to version 3.2.2:
    - Bug fixes:
    - Don't load fields for which ``load_only`` and ``dump_only`` are both ``True`` (:pr:`1448`).
    - Fix types in ``marshmallow.validate`` (:pr:`1446`).
    - Support:
    - Test against Python 3.8 (pr:`1431`).
* Tue Oct 08 2019 mcalabkova@suse.com
  - Update to 3.2.1
    * Fix typing for Schema.dump[s]
    * Fix compatibility with Python < 3.5.3
    * Fix bug that raised an uncaught error when a nested schema
      instance had an unpickleable object in its context
    * Fix propagating dot-delimited only and exclude parameters to
      nested schema instances
    * Few bug fixes
* Wed Sep 11 2019 tchvatal@suse.com
  - Update to 3.0.3:
    * Handle when data_key is an empty string
    * Includes bug fix from 2.20.3
    * Fix incorrect super() call in SchemaMeta.__init__
* Mon Aug 26 2019 mcalabkova@suse.com
  - Update to 3.0.1
    * Many changes, some of them breaking. For example:
    * Remove support for Python 2 (#1120). Only Python>=3.5 is supported.
    * Allow input value to be included in error messages for a number of fields.
    * Change ordering of keys and values arguments to fields.Dict.
    * Please read upstream changelog.
  - Drop upstreamed patches reproducible.patch and pytest5.patch
* Wed Jul 31 2019 tchvatal@suse.com
  - Add patch to fix building with pytest5 from upstream git:
    * pytest5.patch
* Wed Jul 24 2019 tchvatal@suse.com
  - Update to 2.19.5:
    * Fix deserializing ISO8601-formatted datetimes with less than 6-digit miroseconds (:issue:`1251`). Thanks :user:`diego-plan9` for reporting.
    * Microseconds no longer gets lost when deserializing datetimes without dateutil installed (:issue:`1147`).
    * Fix bug where nested fields in Meta.exclude would not work on multiple instantiations (:issue:`1212`). Thanks :user:`MHannila` for reporting.
* Tue May 28 2019 bwiedemann@suse.com
  - Add reproducible.patch to make build reproducible (boo#1047218)
* Fri May 17 2019 mcalabkova@suse.com
  - Update to version 2.19.2
    * Handle OverflowError when (de)serializing large integers with
      fields.Float
* Fri Apr 05 2019 pgajdos@suse.com
  - version update to 2.19.1
    - Fix bug where ``Nested(many=True)`` would skip first element when
      serializing a generator (:issue:`1163`). Thanks :user:`khvn26` for the
      catch and patch.
    - A `RemovedInMarshmallow3` warning is raised when using
      `fields.FormattedString`. Use `fields.Method` or `fields.Function`
      instead (:issue:`1141`).
    - A ``ChangedInMarshmallow3Warning`` is no longer raised when
      ``strict=False`` (:issue:`1108`). Thanks :user:`Aegdesil` for
      reporting.
    - Add warnings for functions in ``marshmallow.utils`` that are removed in
      marshmallow 3.
    - Copying ``missing`` with ``copy.copy`` or ``copy.deepcopy`` will not
      duplicate it (:pr:`1099`).
    - Add ``marshmallow.__version_info__`` (:pr:`1074`).
    - Add warnings for API that is deprecated or changed to help users
      prepare for marshmallow 3 (:pr:`1075`).
    - Prevent memory leak when dynamically creating classes with ``type()``
      (:issue:`732`). Thanks :user:`asmodehn` for writing the tests to
      reproduce this issue.
    - Prevent warning about importing from ``collections`` on Python 3.7
      (:issue:`1027`). Thanks :user:`nkonin` for reporting and
      :user:`jmargeta` for the PR.
    - Remove spurious warning about implicit collection handling
      (:issue:`998`). Thanks :user:`lalvarezguillen` for reporting.
    - Allow username without password in basic auth part of the url in
      ``fields.Url`` (:pr:`982`). Thanks user:`alefnula` for the PR.
    - Prevent ``TypeError`` when a non-collection is passed to a ``Schema`` with ``many=True``.
      Instead, raise ``ValidationError`` with ``{'_schema': ['Invalid input type.']}`` (:issue:`906`).
    - Fix ``root`` attribute for nested container fields on list
      on inheriting schemas (:issue:`956`). Thanks :user:`bmcbu`
      for reporting.
    - Handle empty SQLAlchemy lazy lists gracefully when dumping (:issue:`948`).
      Thanks :user:`vke-code` for the catch and :user:`YuriHeupa` for the patch.
    - Respect ``load_from`` when reporting errors for ``@validates('field_name')``
      (:issue:`748`). Thanks :user:`m-novikov` for the catch and patch.
    - Fix passing ``only`` as a string to ``nested`` when the passed field
      defines ``dump_to`` (:issue:`800`, :issue:`822`). Thanks
      :user:`deckar01` for the catch and patch.
    - Fix a race condition in validation when concurrent threads use the
      same ``Schema`` instance (:issue:`783`). Thanks :user:`yupeng0921` and
      :user:`lafrech` for the fix.
    - Fix serialization behavior of
      ``fields.List(fields.Integer(as_string=True))`` (:issue:`788`). Thanks
      :user:`cactus` for reporting and :user:`lafrech` for the fix.
    - Fix behavior of ``exclude`` parameter when passed from parent to
      nested schemas (:issue:`728`). Thanks :user:`timc13` for reporting and
      :user:`deckar01` for the fix.
    - :cve:`CVE-2018-17175`: Fix behavior when an empty list is passed as the ``only`` argument
      (:issue:`772`). Thanks :user:`deckar01` for reporting and thanks
      :user:`lafrech` for the fix.
    - Handle ``UnicodeDecodeError`` when deserializing ``bytes`` with a
      ``String`` field (:issue:`650`). Thanks :user:`dan-blanchard` for the
      suggestion and thanks :user:`4lissonsilveira` for the PR.
    - Add ``require_tld`` parameter to ``validate.URL`` (:issue:`664`).
      Thanks :user:`sduthil` for the suggestion and the PR.
  - added patches
    + python-marshmallow-no-version-warning.patch
  - deleted patches
    + patch-remove-unsupported-theme-option.patch (upstreamed)
* Wed Dec 19 2018 jengelh@inai.de
  - Use noun phrase in summary.
* Tue Dec 04 2018 mcepl@suse.com
  - Remove superfluous devel dependency for noarch package
* Sat Aug 19 2017 sebix+novell.com@sebix.at
  - initial package

Files

/usr/lib/python3.11/site-packages/marshmallow
/usr/lib/python3.11/site-packages/marshmallow-3.19.0-py3.11.egg-info
/usr/lib/python3.11/site-packages/marshmallow-3.19.0-py3.11.egg-info/PKG-INFO
/usr/lib/python3.11/site-packages/marshmallow-3.19.0-py3.11.egg-info/SOURCES.txt
/usr/lib/python3.11/site-packages/marshmallow-3.19.0-py3.11.egg-info/dependency_links.txt
/usr/lib/python3.11/site-packages/marshmallow-3.19.0-py3.11.egg-info/not-zip-safe
/usr/lib/python3.11/site-packages/marshmallow-3.19.0-py3.11.egg-info/requires.txt
/usr/lib/python3.11/site-packages/marshmallow-3.19.0-py3.11.egg-info/top_level.txt
/usr/lib/python3.11/site-packages/marshmallow/__init__.py
/usr/lib/python3.11/site-packages/marshmallow/__pycache__
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/base.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/base.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/class_registry.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/class_registry.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/decorators.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/decorators.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/error_store.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/error_store.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/exceptions.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/exceptions.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/fields.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/fields.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/orderedset.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/orderedset.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/schema.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/schema.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/types.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/types.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/validate.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/validate.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/warnings.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/marshmallow/__pycache__/warnings.cpython-311.pyc
/usr/lib/python3.11/site-packages/marshmallow/base.py
/usr/lib/python3.11/site-packages/marshmallow/class_registry.py
/usr/lib/python3.11/site-packages/marshmallow/decorators.py
/usr/lib/python3.11/site-packages/marshmallow/error_store.py
/usr/lib/python3.11/site-packages/marshmallow/exceptions.py
/usr/lib/python3.11/site-packages/marshmallow/fields.py
/usr/lib/python3.11/site-packages/marshmallow/orderedset.py
/usr/lib/python3.11/site-packages/marshmallow/py.typed
/usr/lib/python3.11/site-packages/marshmallow/schema.py
/usr/lib/python3.11/site-packages/marshmallow/types.py
/usr/lib/python3.11/site-packages/marshmallow/utils.py
/usr/lib/python3.11/site-packages/marshmallow/validate.py
/usr/lib/python3.11/site-packages/marshmallow/warnings.py
/usr/share/doc/packages/python311-marshmallow
/usr/share/doc/packages/python311-marshmallow/AUTHORS.rst
/usr/share/doc/packages/python311-marshmallow/CHANGELOG.rst
/usr/share/doc/packages/python311-marshmallow/README.rst
/usr/share/doc/packages/python311-marshmallow/examples
/usr/share/doc/packages/python311-marshmallow/examples/flask_example.py
/usr/share/doc/packages/python311-marshmallow/examples/inflection_example.py
/usr/share/doc/packages/python311-marshmallow/examples/package_json_example.py
/usr/share/doc/packages/python311-marshmallow/examples/peewee_example.py
/usr/share/doc/packages/python311-marshmallow/examples/textblob_example.py
/usr/share/doc/packages/python311-marshmallow/html
/usr/share/doc/packages/python311-marshmallow/html/_modules
/usr/share/doc/packages/python311-marshmallow/html/_modules/index.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/class_registry.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/decorators.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/error_store.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/exceptions.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/fields.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/schema.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/utils.html
/usr/share/doc/packages/python311-marshmallow/html/_modules/marshmallow/validate.html
/usr/share/doc/packages/python311-marshmallow/html/_sources
/usr/share/doc/packages/python311-marshmallow/html/_sources/api_reference.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/authors.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/changelog.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/code_of_conduct.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/contributing.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/custom_fields.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/ecosystem.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/examples.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/extending.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/index.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/install.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/kudos.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/license.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.class_registry.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.decorators.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.error_store.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.exceptions.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.fields.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.schema.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.utils.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/marshmallow.validate.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/nesting.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/quickstart.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/upgrading.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/whos_using.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_sources/why.rst.txt
/usr/share/doc/packages/python311-marshmallow/html/_static
/usr/share/doc/packages/python311-marshmallow/html/_static/alabaster.css
/usr/share/doc/packages/python311-marshmallow/html/_static/basic.css
/usr/share/doc/packages/python311-marshmallow/html/_static/css
/usr/share/doc/packages/python311-marshmallow/html/_static/css/versionwarning.css
/usr/share/doc/packages/python311-marshmallow/html/_static/custom.css
/usr/share/doc/packages/python311-marshmallow/html/_static/doctools.js
/usr/share/doc/packages/python311-marshmallow/html/_static/documentation_options.js
/usr/share/doc/packages/python311-marshmallow/html/_static/file.png
/usr/share/doc/packages/python311-marshmallow/html/_static/language_data.js
/usr/share/doc/packages/python311-marshmallow/html/_static/marshmallow-logo.png
/usr/share/doc/packages/python311-marshmallow/html/_static/minus.png
/usr/share/doc/packages/python311-marshmallow/html/_static/plus.png
/usr/share/doc/packages/python311-marshmallow/html/_static/pygments.css
/usr/share/doc/packages/python311-marshmallow/html/_static/searchtools.js
/usr/share/doc/packages/python311-marshmallow/html/_static/sphinx_highlight.js
/usr/share/doc/packages/python311-marshmallow/html/api_reference.html
/usr/share/doc/packages/python311-marshmallow/html/authors.html
/usr/share/doc/packages/python311-marshmallow/html/changelog.html
/usr/share/doc/packages/python311-marshmallow/html/code_of_conduct.html
/usr/share/doc/packages/python311-marshmallow/html/contributing.html
/usr/share/doc/packages/python311-marshmallow/html/custom_fields.html
/usr/share/doc/packages/python311-marshmallow/html/ecosystem.html
/usr/share/doc/packages/python311-marshmallow/html/examples.html
/usr/share/doc/packages/python311-marshmallow/html/extending.html
/usr/share/doc/packages/python311-marshmallow/html/genindex.html
/usr/share/doc/packages/python311-marshmallow/html/index.html
/usr/share/doc/packages/python311-marshmallow/html/install.html
/usr/share/doc/packages/python311-marshmallow/html/kudos.html
/usr/share/doc/packages/python311-marshmallow/html/license.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.class_registry.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.decorators.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.error_store.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.exceptions.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.fields.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.schema.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.utils.html
/usr/share/doc/packages/python311-marshmallow/html/marshmallow.validate.html
/usr/share/doc/packages/python311-marshmallow/html/nesting.html
/usr/share/doc/packages/python311-marshmallow/html/objects.inv
/usr/share/doc/packages/python311-marshmallow/html/py-modindex.html
/usr/share/doc/packages/python311-marshmallow/html/quickstart.html
/usr/share/doc/packages/python311-marshmallow/html/search.html
/usr/share/doc/packages/python311-marshmallow/html/searchindex.js
/usr/share/doc/packages/python311-marshmallow/html/upgrading.html
/usr/share/doc/packages/python311-marshmallow/html/whos_using.html
/usr/share/doc/packages/python311-marshmallow/html/why.html
/usr/share/licenses/python311-marshmallow
/usr/share/licenses/python311-marshmallow/LICENSE
/usr/share/licenses/python311-marshmallow/NOTICE


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed May 8 23:36:38 2024