persistent


Namepersistent JSON
Version 5.2 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/persistent/
SummaryTranslucent persistent objects
upload_time2024-02-16 08:32:15
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ===========================================================
 ``persistent``:  automatic persistence for Python objects
===========================================================

.. image:: https://github.com/zopefoundation/persistent/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/persistent/actions/workflows/tests.yml

.. image:: https://ci.appveyor.com/api/projects/status/github/zopefoundation/persistent?branch=master&svg=true
        :target: https://ci.appveyor.com/project/mgedmin/persistent

.. image:: https://coveralls.io/repos/github/zopefoundation/persistent/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/persistent?branch=master

.. image:: https://readthedocs.org/projects/persistent/badge/?version=latest
        :target: https://persistent.readthedocs.io/en/latest/
        :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/persistent.svg
        :target: https://pypi.org/project/persistent/
        :alt: Latest release

.. image:: https://img.shields.io/pypi/pyversions/persistent.svg
        :target: https://pypi.org/project/persistent/
        :alt: Python versions

This package contains a generic persistence implementation for Python. It
forms the core protocol for making objects interact "transparently" with
a database such as the ZODB.

Please see the Sphinx documentation (``docs/index.rst``) for further
information, or view the documentation at Read The Docs, for either
the latest (``https://persistent.readthedocs.io/en/latest/``) or stable
release (``https://persistent.readthedocs.io/en/stable/``).

.. note::

   Use of this standalone ``persistent`` release is not recommended or
   supported with ZODB < 3.11.  ZODB 3.10 and earlier bundle their own
   version of  the ``persistent`` package.


==========================
 ``persistent`` Changelog
==========================

5.2 (2024-02-16)
================

- Add preliminary support for Python 3.13a3.


5.1 (2023-10-05)
================

- Add support for Python 3.12.


5.0 (2023-01-09)
================

- Build Linux binary wheels for Python 3.11.

- Drop support for Python 2.7, 3.5, 3.6.


4.9.3 (2022-11-16)
==================

- Add support for building arm64 wheels on macOS.


4.9.2 (2022-11-03)
==================

- Update Python 3.11 support to final release.


4.9.1 (2022-09-16)
==================

- Update Python 3.11 support to 3.11.0-rc1.

- Disable unsafe math optimizations in C code.  See `pull request 176
  <https://github.com/zopefoundation/persistent/pull/176>`_.


4.9.0 (2022-03-10)
==================

- Add support for Python 3.11 (as of 3.11a5).


4.8.0 (2022-03-07)
==================

- Switch package to src-layout, this is a packaging only change.
  (`#168 <https://github.com/zopefoundation/persistent/pull/168>`_)
- Add support for Python 3.10.


4.7.0 (2021-04-13)
==================

- Add support for Python 3.9.
- Move from Travis CI to Github Actions.
- Supply manylinux wheels for aarch64 (ARM).
- Fix the pure-Python implementation to activate a ghost object
  when setting its ``__class__`` and ``__dict__``. This matches the
  behaviour of the C implementation. See `issue 155
  <https://github.com/zopefoundation/persistent/issues/155>`_.
- Fix the CFFI cache implementation (used on CPython when
  ``PURE_PYTHON=1``) to not print unraisable ``AttributeErrors`` from
  ``_WeakValueDictionary`` during garbage collection. See `issue 150
  <https://github.com/zopefoundation/persistent/issues/150>`_.
- Make the pure-Python implementation of the cache run a garbage
  collection (``gc.collect()``) on ``full_sweep``, ``incrgc`` and
  ``minimize`` *if* it detects that an object that was weakly
  referenced has been ejected. This solves issues on PyPy with ZODB raising
  ``ConnectionStateError`` when there are persistent
  ``zope.interface`` utilities/adapters registered. This partly
  reverts a change from release 4.2.3.

4.6.4 (2020-03-26)
==================

- Fix an overly specific test failure using zope.interface 5. See
  `issue 144 <https://github.com/zopefoundation/persistent/issues/144>`_.
- Fix two reference leaks that could theoretically occur as the result
  of obscure errors. See `issue 143 <https://github.com/zopefoundation/persistent/issues/143>`_.

4.6.3 (2020-03-18)
==================

- Fix a crash in the test suite under a 32-bit CPython on certain
  32-bit platforms. See `issue 137
  <https://github.com/zopefoundation/persistent/issues/137>`_. Fix by
  `Jerry James <https://github.com/jamesjer>`_.


4.6.2 (2020-03-12)
==================

- Fix an ``AssertionError`` clearing a non-empty ``PersistentMapping``
  that has no connection. See `issue 139
  <https://github.com/zopefoundation/persistent/issues/139>`_.


4.6.1 (2020-03-06)
==================

- Stop installing C header files on PyPy (which is what persistent before 4.6.0
  used to do), fixes `issue 135
  <https://github.com/zopefoundation/persistent/issues/135>`_.


4.6.0 (2020-03-05)
==================

- Fix slicing of ``PersistentList`` to always return instances of the
  same class. It was broken on Python 3 prior to 3.7.4.

- Fix copying  of ``PersistentList`` and ``PersistentMapping`` using
  ``copy.copy`` to also copy the underlying data object. This was
  broken prior to Python 3.7.4.

- Update the handling of the ``PURE_PYTHON`` environment variable.
  Now, a value of "0" requires that the C extensions be used; any other
  non-empty value prevents the extensions from being used. Also, all C
  extensions are required together or none of them will be used. This
  prevents strange errors that arise from a mismatch of Python and C
  implementations. See `issue 131 <https://github.com/zopefoundation/persistent/issues/131>`_.

  Note that some private implementation details such as the names of
  the pure-Python implementations have changed.

- Fix ``PersistentList`` to mark itself as changed after calling
  ``clear`` (if needed). See `PR 115
  <https://github.com/zopefoundation/persistent/pull/115/>`_.

- Fix ``PersistentMapping.update`` to accept keyword arguments like
  the native ``UserDict``. Previously, most uses of keyword arguments
  resulted in ``TypeError``; in the undocumented and extremely
  unlikely event of a single keyword argument called ``b`` that
  happens to be a dictionary, the behaviour will change. Also adjust
  the signatures of ``setdefault`` and ``pop`` to match the native
  version.

- Fix ``PersistentList.clear``, ``PersistentMapping.clear`` and
  ``PersistentMapping.popitem`` to no longer mark the object as
  changed if it was empty.

- Add preliminary support for Python 3.9a3+.
  See `issue 124 <https://github.com/zopefoundation/persistent/issues/124>`_.

- Fix the Python implementation of the PickleCache to be able to store
  objects that cannot be weakly referenced. See `issue 133
  <https://github.com/zopefoundation/persistent/issues/133>`_.

  Note that ``ctypes`` is required to use the Python implementation
  (except on PyPy).

4.5.1 (2019-11-06)
==================

- Add support for Python 3.8.

- Update documentation to Python 3.


4.5.0 (2019-05-09)
==================

- Fully test the C implementation of the PickleCache, and fix
  discrepancies between it and the Python implementation:

  - The C implementation now raises ``ValueError`` instead of
    ``AssertionError`` for certain types of bad inputs.
  - The Python implementation uses the C wording for error messages.
  - The C implementation properly implements ``IPickleCache``; methods
    unique to the Python implementation were moved to
    ``IExtendedPickleCache``.
  - The Python implementation raises ``AttributeError`` if a
    persistent class doesn't have a ``p_jar`` attribute.

  See `issue 102
  <https://github.com/zopefoundation/persistent/issues/102>`_.

- Allow sweeping cache without ``cache_size``. ``cache_size_bytes``
  works with ``cache_size=0``, no need to set ``cache_size`` to a
  large value.

- Require ``CFFI`` on CPython for pure-Python operation. This drops
  support for Jython (which was untested). See `issue 77
  <https://github.com/zopefoundation/persistent/issues/77>`_.

- Fix DeprecationWarning about ``PY_SSIZE_T_CLEAN``.
  See `issue 108 <https://github.com/zopefoundation/persistent/issues/108>`_.

- Drop support for Python 3.4.


4.4.3 (2018-10-22)
==================

- Fix the repr of the persistent objects to include the module name
  when using the C extension. This matches the pure-Python behaviour
  and the behaviour prior to 4.4.0. See `issue 92
  <https://github.com/zopefoundation/persistent/issues/92>`_.

- Change the repr of persistent objects to format the OID as in
  integer in hexadecimal notation if it is an 8-byte byte string, as
  ZODB does. This eliminates some issues in doctests. See `issue 95
  <https://github.com/zopefoundation/persistent/pull/95>`_.


4.4.2 (2018-08-28)
==================

- Explicitly use unsigned constants for packing and unpacking C
  timestamps, fixing an arithmetic issue for GCC when optimizations
  are enabled and ``-fwrapv`` is *not* enabled. See `issue 86
  <https://github.com/zopefoundation/persistent/issues/86>`_.


4.4.1 (2018-08-23)
==================

- Fix installation of source packages on PyPy. See `issue 88
  <https://github.com/zopefoundation/persistent/issues/88>`_.


4.4.0 (2018-08-22)
==================

- Use unsigned constants when doing arithmetic on C timestamps,
  possibly avoiding some overflow issues with some compilers or
  compiler settings. See `issue 86
  <https://github.com/zopefoundation/persistent/issues/86>`_.

- Change the default representation of ``Persistent`` objects to
  include the representation of their OID and jar, if set. Also add
  the ability for subclasses to implement ``_p_repr()`` instead of
  overriding ``__repr__`` for better exception handling. See `issue 11
  <https://github.com/zopefoundation/persistent/issues/11>`_.

- Reach and maintain 100% test coverage.

- Simplify ``__init__.py``, including removal of an attempted legacy
  import of ``persistent.TimeStamp``. See `PR 80
  <https://github.com/zopefoundation/persistent/pull/80>`_.

- Add support for Python 3.7 and drop support for Python 3.3.

- Build the CFFI modules (used on PyPy or when PURE_PYTHON is set) `at
  installation or wheel building time
  <https://cffi.readthedocs.io/en/latest/cdef.html#ffibuilder-set-source-preparing-out-of-line-modules>`_
  when CFFI is available. This replaces `the deprecated way
  <https://cffi.readthedocs.io/en/latest/overview.html#abi-versus-api>`_
  of building them at import time. If binary wheels are distributed,
  it eliminates the need to have a functioning C compiler to use PyPy.
  See `issue 75
  <https://github.com/zopefoundation/persistent/issues/75>`_.

- Fix deleting the ``_p_oid`` of a pure-Python persistent object when
  it is in a cache.

- Fix deleting special (``_p``) attributes of a pure-Python persistent
  object that overrides ``__delattr__`` and correctly calls ``_p_delattr``.

- Remove some internal compatibility shims that are no longer
  necessary. See `PR 82 <https://github.com/zopefoundation/persistent/pull/82>`_.

- Make the return value of ``TimeStamp.second()`` consistent across C
  and Python implementations when the ``TimeStamp`` was created from 6
  arguments with floating point seconds. Also make it match across
  trips through ``TimeStamp.raw()``. Previously, the C version could
  initially have erroneous rounding and too much false precision,
  while the Python version could have too much precision. The raw/repr
  values have not changed. See `issue 41
  <https://github.com/zopefoundation/persistent/issues/41>`_.


4.3.0 (2018-07-30)
==================

- Fix the possibility of a rare crash in the C extension when
  deallocating items. See https://github.com/zopefoundation/persistent/issues/66

- Change cPickleCache's comparison of object sizes to determine
  whether an object can go in the cache to use ``PyObject_TypeCheck()``.
  This matches what the pure Python implementation does and is a
  stronger test that the object really is compatible with the cache.
  Previously, an object could potentially include ``cPersistent_HEAD``
  and *not* set ``tp_base`` to ``cPersistenceCAPI->pertype`` and still
  be eligible for the pickle cache; that is no longer the case. See
  `issue 69 <https://github.com/zopefoundation/persistent/issues/69>`_.


4.2.4.2 (2017-04-23)
====================

- Packaging-only release: fix Python 2.7 ``manylinux`` wheels.


4.2.4.1 (2017-04-21)
====================

- Packaging-only release:  get ``manylinux`` wheel built automatically.


4.2.4 (2017-03-20)
==================

- Avoid raising a ``SystemError: error return without exception set``
  when loading an object with slots whose jar generates an exception
  (such as a ZODB ``POSKeyError``) in ``setstate``.


4.2.3 (2017-03-08)
==================

- Fix the hashcode of Python ``TimeStamp`` objects on 64-bit Python on
  Windows. See https://github.com/zopefoundation/persistent/pull/55

- Stop calling ``gc.collect`` every time ``PickleCache.incrgc`` is called (every
  transaction boundary) in pure-Python mode (PyPy). This means that
  the reported size of the cache may be wrong (until the next GC), but
  it is much faster. This should not have any observable effects for
  user code.

- Stop clearing the dict and slots of objects added to
  ``PickleCache.new_ghost`` (typically these values are passed to
  ``__new__`` from the pickle data) in pure-Python mode (PyPy). This
  matches the behaviour of the C code.

- Add support for Python 3.6.

- Fix ``__setstate__`` interning when ``state`` parameter is not a built-in dict


4.2.2 (2016-11-29)
==================

- Drop use of ``ctypes`` for determining maximum integer size, to increase
  pure-Python compatibility. See https://github.com/zopefoundation/persistent/pull/31

- Ensure that ``__slots__`` attributes are cleared when a persistent
  object is ghostified.  (This excluses classes that override
  ``__new__``.  See
  https://github.com/zopefoundation/persistent/wiki/Notes_on_state_new_and_slots
  if you're curious.)


4.2.1 (2016-05-26)
==================

- Fix the hashcode of C ``TimeStamp`` objects on 64-bit Python 3 on
  Windows.


4.2.0 (2016-05-05)
==================

- Fixed the Python(/PYPY) implementation ``TimeStamp.timeTime`` method
  to have subsecond precision.

- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning
  the user's global wheel cache.

- Add support for Python 3.5.

- Drop support for Python 2.6 and 3.2.


4.1.1 (2015-06-02)
==================

- Fix manifest and re-upload to fix stray files included in 4.1.0.


4.1.0 (2015-05-19)
==================

- Make the Python implementation of ``Persistent`` and ``PickleCache``
  behave more similarly to the C implementation. In particular, the
  Python version can now run the complete ZODB and ZEO test suites.

- Fix the hashcode of the Python ``TimeStamp`` on 32-bit platforms.


4.0.9 (2015-04-08)
==================

- Make the C and Python ``TimeStamp`` objects behave more alike. The
  Python version now produces the same ``repr`` and ``.raw()`` output as
  the C version, and has the same hashcode. In addition, the Python
  version is now supports ordering and equality like the C version.

- Intern keys of object state in ``__setstate__`` to reduce memory usage
  when unpickling multiple objects with the same attributes.

- Add support for PyPy3.

- 100% branch coverage.


4.0.8 (2014-03-20)
==================

- Add support for Python 3.4.

- In pure-Python ``Persistent``, avoid loading state in ``_p_activate``
  for non-ghost objects (which could corrupt their state).  (PR #9)

- In pure-Python, and don't throw ``POSKeyError`` if ``_p_activate`` is
  called on an object that has never been committed.  (PR #9)

- In pure-Python ``Persistent``, avoid calling a subclass's ``__setattr__``
  at instance creation time. (PR #8)

- Make it possible to delete ``_p_jar`` / ``_p_oid`` of a pure-Python
  ``Persistent`` object which has been removed from the jar's cache
  (fixes aborting a ZODB Connection that has added objects). (PR #7)


4.0.7 (2014-02-20)
==================

- Avoid a KeyError from ``_p_accessed()`` on newly-created objects under
  pure-Python:  these objects may be assigned to a jar, but not yet added
  to its cache.  (PR #6)

- Avoid a failure in ``Persistent.__setstate__`` when the state dict
  contains exactly two keys.  (PR #5)

- Fix a hang in ``picklecache`` invalidation if OIDs are manually passed
  out-of-order. (PR #4)

- Add ``PURE_PYTHON`` environment variable support:  if set, the C
  extensions will not be built, imported, or tested.


4.0.6 (2013-01-03)
==================

- Updated Trove classifiers.


4.0.5 (2012-12-14)
==================

- Fixed the C-extensions under Py3k (previously they compiled but were
  not importable).


4.0.4 (2012-12-11)
==================

- Added support for Python 3.3.

- C extenstions now build under Python 3.2, passing the same tests as
  the pure-Python reference implementation.


4.0.3 (2012-11-19)
==================

- Fixed: In the C implimentation, an integer was compared with a
  pointer, with undefined results and a compiler warning.

- Fixed: the Python implementation of the ``_p_estimated_size`` propety
  didn't support deletion.

- Simplified implementation of the ``_p_estimated_size`` property to
  only accept integers.  A TypeError is raised if an incorrect type is
  provided.


4.0.2 (2012-08-27)
==================

- Correct initialization functions in renamed ``_timestamp`` extension.


4.0.1 (2012-08-26)
==================

- Worked around test failure due to overflow to long on 32-bit systems.

- Renamed ``TimeStamp`` extension module to avoid clash with pure-Python
  ``timestamp`` module on case-insensitive filesystems.

  N.B:  the canonical way to import the ``TimeStamp`` class is now::

    from persistent.timestamp import TimeStamp

  which will yield the class from the extension module (if available),
  falling back to the pure-Python reference implementation.


4.0.0 (2012-08-11)
==================

Platform Changes
----------------

- Added explicit support for Python 3.2 and PyPy.

  - Note that the C implementations of Persistent, PickleCache, and Timestamp
    are not built (yet) on these platforms.

- Dropped support for Python < 2.6.

Testing Changes
---------------

- 100% unit test coverage.

- Removed all ``ZODB``-dependent tests:

  - Rewrote some to avoid the dependency

  - Cloned the remainder into new ``ZODB.tests`` modules.

- Refactored some doctests refactored as unittests.

- Completed pure-Python reference implementations of 'Persistent',
  'PickleCache', and 'TimeStamp'.

- All covered platforms tested under ``tox``.

- Added support for continuous integration using ``tox`` and ``jenkins``.

- Added ``setup.py dev`` alias (installs ``nose`` and ``coverage``).

- Dropped dependency on ``zope.testing`` / ``zope.testrunner``:  tests now
  run with ``setup.py test``.

Documentation Changes
---------------------

- Refactored many Doctests as Sphinx documentation (snippets are exercised
  via 'tox').

- Added ``setup.py docs`` alias (installs ``Sphinx`` and
  ``repoze.sphinx.autointerface``).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/persistent/",
    "name": "persistent",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Zope Foundation and Contributors",
    "author_email": "zodb-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/79/22/b3a69a3018a90e68b6de957f811922cd95dbda42419e0f9792c7193b0433/persistent-5.2.tar.gz",
    "platform": null,
    "description": "===========================================================\n ``persistent``:  automatic persistence for Python objects\n===========================================================\n\n.. image:: https://github.com/zopefoundation/persistent/actions/workflows/tests.yml/badge.svg\n        :target: https://github.com/zopefoundation/persistent/actions/workflows/tests.yml\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/zopefoundation/persistent?branch=master&svg=true\n        :target: https://ci.appveyor.com/project/mgedmin/persistent\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/persistent/badge.svg?branch=master\n        :target: https://coveralls.io/github/zopefoundation/persistent?branch=master\n\n.. image:: https://readthedocs.org/projects/persistent/badge/?version=latest\n        :target: https://persistent.readthedocs.io/en/latest/\n        :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/persistent.svg\n        :target: https://pypi.org/project/persistent/\n        :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/persistent.svg\n        :target: https://pypi.org/project/persistent/\n        :alt: Python versions\n\nThis package contains a generic persistence implementation for Python. It\nforms the core protocol for making objects interact \"transparently\" with\na database such as the ZODB.\n\nPlease see the Sphinx documentation (``docs/index.rst``) for further\ninformation, or view the documentation at Read The Docs, for either\nthe latest (``https://persistent.readthedocs.io/en/latest/``) or stable\nrelease (``https://persistent.readthedocs.io/en/stable/``).\n\n.. note::\n\n   Use of this standalone ``persistent`` release is not recommended or\n   supported with ZODB < 3.11.  ZODB 3.10 and earlier bundle their own\n   version of  the ``persistent`` package.\n\n\n==========================\n ``persistent`` Changelog\n==========================\n\n5.2 (2024-02-16)\n================\n\n- Add preliminary support for Python 3.13a3.\n\n\n5.1 (2023-10-05)\n================\n\n- Add support for Python 3.12.\n\n\n5.0 (2023-01-09)\n================\n\n- Build Linux binary wheels for Python 3.11.\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n4.9.3 (2022-11-16)\n==================\n\n- Add support for building arm64 wheels on macOS.\n\n\n4.9.2 (2022-11-03)\n==================\n\n- Update Python 3.11 support to final release.\n\n\n4.9.1 (2022-09-16)\n==================\n\n- Update Python 3.11 support to 3.11.0-rc1.\n\n- Disable unsafe math optimizations in C code.  See `pull request 176\n  <https://github.com/zopefoundation/persistent/pull/176>`_.\n\n\n4.9.0 (2022-03-10)\n==================\n\n- Add support for Python 3.11 (as of 3.11a5).\n\n\n4.8.0 (2022-03-07)\n==================\n\n- Switch package to src-layout, this is a packaging only change.\n  (`#168 <https://github.com/zopefoundation/persistent/pull/168>`_)\n- Add support for Python 3.10.\n\n\n4.7.0 (2021-04-13)\n==================\n\n- Add support for Python 3.9.\n- Move from Travis CI to Github Actions.\n- Supply manylinux wheels for aarch64 (ARM).\n- Fix the pure-Python implementation to activate a ghost object\n  when setting its ``__class__`` and ``__dict__``. This matches the\n  behaviour of the C implementation. See `issue 155\n  <https://github.com/zopefoundation/persistent/issues/155>`_.\n- Fix the CFFI cache implementation (used on CPython when\n  ``PURE_PYTHON=1``) to not print unraisable ``AttributeErrors`` from\n  ``_WeakValueDictionary`` during garbage collection. See `issue 150\n  <https://github.com/zopefoundation/persistent/issues/150>`_.\n- Make the pure-Python implementation of the cache run a garbage\n  collection (``gc.collect()``) on ``full_sweep``, ``incrgc`` and\n  ``minimize`` *if* it detects that an object that was weakly\n  referenced has been ejected. This solves issues on PyPy with ZODB raising\n  ``ConnectionStateError`` when there are persistent\n  ``zope.interface`` utilities/adapters registered. This partly\n  reverts a change from release 4.2.3.\n\n4.6.4 (2020-03-26)\n==================\n\n- Fix an overly specific test failure using zope.interface 5. See\n  `issue 144 <https://github.com/zopefoundation/persistent/issues/144>`_.\n- Fix two reference leaks that could theoretically occur as the result\n  of obscure errors. See `issue 143 <https://github.com/zopefoundation/persistent/issues/143>`_.\n\n4.6.3 (2020-03-18)\n==================\n\n- Fix a crash in the test suite under a 32-bit CPython on certain\n  32-bit platforms. See `issue 137\n  <https://github.com/zopefoundation/persistent/issues/137>`_. Fix by\n  `Jerry James <https://github.com/jamesjer>`_.\n\n\n4.6.2 (2020-03-12)\n==================\n\n- Fix an ``AssertionError`` clearing a non-empty ``PersistentMapping``\n  that has no connection. See `issue 139\n  <https://github.com/zopefoundation/persistent/issues/139>`_.\n\n\n4.6.1 (2020-03-06)\n==================\n\n- Stop installing C header files on PyPy (which is what persistent before 4.6.0\n  used to do), fixes `issue 135\n  <https://github.com/zopefoundation/persistent/issues/135>`_.\n\n\n4.6.0 (2020-03-05)\n==================\n\n- Fix slicing of ``PersistentList`` to always return instances of the\n  same class. It was broken on Python 3 prior to 3.7.4.\n\n- Fix copying  of ``PersistentList`` and ``PersistentMapping`` using\n  ``copy.copy`` to also copy the underlying data object. This was\n  broken prior to Python 3.7.4.\n\n- Update the handling of the ``PURE_PYTHON`` environment variable.\n  Now, a value of \"0\" requires that the C extensions be used; any other\n  non-empty value prevents the extensions from being used. Also, all C\n  extensions are required together or none of them will be used. This\n  prevents strange errors that arise from a mismatch of Python and C\n  implementations. See `issue 131 <https://github.com/zopefoundation/persistent/issues/131>`_.\n\n  Note that some private implementation details such as the names of\n  the pure-Python implementations have changed.\n\n- Fix ``PersistentList`` to mark itself as changed after calling\n  ``clear`` (if needed). See `PR 115\n  <https://github.com/zopefoundation/persistent/pull/115/>`_.\n\n- Fix ``PersistentMapping.update`` to accept keyword arguments like\n  the native ``UserDict``. Previously, most uses of keyword arguments\n  resulted in ``TypeError``; in the undocumented and extremely\n  unlikely event of a single keyword argument called ``b`` that\n  happens to be a dictionary, the behaviour will change. Also adjust\n  the signatures of ``setdefault`` and ``pop`` to match the native\n  version.\n\n- Fix ``PersistentList.clear``, ``PersistentMapping.clear`` and\n  ``PersistentMapping.popitem`` to no longer mark the object as\n  changed if it was empty.\n\n- Add preliminary support for Python 3.9a3+.\n  See `issue 124 <https://github.com/zopefoundation/persistent/issues/124>`_.\n\n- Fix the Python implementation of the PickleCache to be able to store\n  objects that cannot be weakly referenced. See `issue 133\n  <https://github.com/zopefoundation/persistent/issues/133>`_.\n\n  Note that ``ctypes`` is required to use the Python implementation\n  (except on PyPy).\n\n4.5.1 (2019-11-06)\n==================\n\n- Add support for Python 3.8.\n\n- Update documentation to Python 3.\n\n\n4.5.0 (2019-05-09)\n==================\n\n- Fully test the C implementation of the PickleCache, and fix\n  discrepancies between it and the Python implementation:\n\n  - The C implementation now raises ``ValueError`` instead of\n    ``AssertionError`` for certain types of bad inputs.\n  - The Python implementation uses the C wording for error messages.\n  - The C implementation properly implements ``IPickleCache``; methods\n    unique to the Python implementation were moved to\n    ``IExtendedPickleCache``.\n  - The Python implementation raises ``AttributeError`` if a\n    persistent class doesn't have a ``p_jar`` attribute.\n\n  See `issue 102\n  <https://github.com/zopefoundation/persistent/issues/102>`_.\n\n- Allow sweeping cache without ``cache_size``. ``cache_size_bytes``\n  works with ``cache_size=0``, no need to set ``cache_size`` to a\n  large value.\n\n- Require ``CFFI`` on CPython for pure-Python operation. This drops\n  support for Jython (which was untested). See `issue 77\n  <https://github.com/zopefoundation/persistent/issues/77>`_.\n\n- Fix DeprecationWarning about ``PY_SSIZE_T_CLEAN``.\n  See `issue 108 <https://github.com/zopefoundation/persistent/issues/108>`_.\n\n- Drop support for Python 3.4.\n\n\n4.4.3 (2018-10-22)\n==================\n\n- Fix the repr of the persistent objects to include the module name\n  when using the C extension. This matches the pure-Python behaviour\n  and the behaviour prior to 4.4.0. See `issue 92\n  <https://github.com/zopefoundation/persistent/issues/92>`_.\n\n- Change the repr of persistent objects to format the OID as in\n  integer in hexadecimal notation if it is an 8-byte byte string, as\n  ZODB does. This eliminates some issues in doctests. See `issue 95\n  <https://github.com/zopefoundation/persistent/pull/95>`_.\n\n\n4.4.2 (2018-08-28)\n==================\n\n- Explicitly use unsigned constants for packing and unpacking C\n  timestamps, fixing an arithmetic issue for GCC when optimizations\n  are enabled and ``-fwrapv`` is *not* enabled. See `issue 86\n  <https://github.com/zopefoundation/persistent/issues/86>`_.\n\n\n4.4.1 (2018-08-23)\n==================\n\n- Fix installation of source packages on PyPy. See `issue 88\n  <https://github.com/zopefoundation/persistent/issues/88>`_.\n\n\n4.4.0 (2018-08-22)\n==================\n\n- Use unsigned constants when doing arithmetic on C timestamps,\n  possibly avoiding some overflow issues with some compilers or\n  compiler settings. See `issue 86\n  <https://github.com/zopefoundation/persistent/issues/86>`_.\n\n- Change the default representation of ``Persistent`` objects to\n  include the representation of their OID and jar, if set. Also add\n  the ability for subclasses to implement ``_p_repr()`` instead of\n  overriding ``__repr__`` for better exception handling. See `issue 11\n  <https://github.com/zopefoundation/persistent/issues/11>`_.\n\n- Reach and maintain 100% test coverage.\n\n- Simplify ``__init__.py``, including removal of an attempted legacy\n  import of ``persistent.TimeStamp``. See `PR 80\n  <https://github.com/zopefoundation/persistent/pull/80>`_.\n\n- Add support for Python 3.7 and drop support for Python 3.3.\n\n- Build the CFFI modules (used on PyPy or when PURE_PYTHON is set) `at\n  installation or wheel building time\n  <https://cffi.readthedocs.io/en/latest/cdef.html#ffibuilder-set-source-preparing-out-of-line-modules>`_\n  when CFFI is available. This replaces `the deprecated way\n  <https://cffi.readthedocs.io/en/latest/overview.html#abi-versus-api>`_\n  of building them at import time. If binary wheels are distributed,\n  it eliminates the need to have a functioning C compiler to use PyPy.\n  See `issue 75\n  <https://github.com/zopefoundation/persistent/issues/75>`_.\n\n- Fix deleting the ``_p_oid`` of a pure-Python persistent object when\n  it is in a cache.\n\n- Fix deleting special (``_p``) attributes of a pure-Python persistent\n  object that overrides ``__delattr__`` and correctly calls ``_p_delattr``.\n\n- Remove some internal compatibility shims that are no longer\n  necessary. See `PR 82 <https://github.com/zopefoundation/persistent/pull/82>`_.\n\n- Make the return value of ``TimeStamp.second()`` consistent across C\n  and Python implementations when the ``TimeStamp`` was created from 6\n  arguments with floating point seconds. Also make it match across\n  trips through ``TimeStamp.raw()``. Previously, the C version could\n  initially have erroneous rounding and too much false precision,\n  while the Python version could have too much precision. The raw/repr\n  values have not changed. See `issue 41\n  <https://github.com/zopefoundation/persistent/issues/41>`_.\n\n\n4.3.0 (2018-07-30)\n==================\n\n- Fix the possibility of a rare crash in the C extension when\n  deallocating items. See https://github.com/zopefoundation/persistent/issues/66\n\n- Change cPickleCache's comparison of object sizes to determine\n  whether an object can go in the cache to use ``PyObject_TypeCheck()``.\n  This matches what the pure Python implementation does and is a\n  stronger test that the object really is compatible with the cache.\n  Previously, an object could potentially include ``cPersistent_HEAD``\n  and *not* set ``tp_base`` to ``cPersistenceCAPI->pertype`` and still\n  be eligible for the pickle cache; that is no longer the case. See\n  `issue 69 <https://github.com/zopefoundation/persistent/issues/69>`_.\n\n\n4.2.4.2 (2017-04-23)\n====================\n\n- Packaging-only release: fix Python 2.7 ``manylinux`` wheels.\n\n\n4.2.4.1 (2017-04-21)\n====================\n\n- Packaging-only release:  get ``manylinux`` wheel built automatically.\n\n\n4.2.4 (2017-03-20)\n==================\n\n- Avoid raising a ``SystemError: error return without exception set``\n  when loading an object with slots whose jar generates an exception\n  (such as a ZODB ``POSKeyError``) in ``setstate``.\n\n\n4.2.3 (2017-03-08)\n==================\n\n- Fix the hashcode of Python ``TimeStamp`` objects on 64-bit Python on\n  Windows. See https://github.com/zopefoundation/persistent/pull/55\n\n- Stop calling ``gc.collect`` every time ``PickleCache.incrgc`` is called (every\n  transaction boundary) in pure-Python mode (PyPy). This means that\n  the reported size of the cache may be wrong (until the next GC), but\n  it is much faster. This should not have any observable effects for\n  user code.\n\n- Stop clearing the dict and slots of objects added to\n  ``PickleCache.new_ghost`` (typically these values are passed to\n  ``__new__`` from the pickle data) in pure-Python mode (PyPy). This\n  matches the behaviour of the C code.\n\n- Add support for Python 3.6.\n\n- Fix ``__setstate__`` interning when ``state`` parameter is not a built-in dict\n\n\n4.2.2 (2016-11-29)\n==================\n\n- Drop use of ``ctypes`` for determining maximum integer size, to increase\n  pure-Python compatibility. See https://github.com/zopefoundation/persistent/pull/31\n\n- Ensure that ``__slots__`` attributes are cleared when a persistent\n  object is ghostified.  (This excluses classes that override\n  ``__new__``.  See\n  https://github.com/zopefoundation/persistent/wiki/Notes_on_state_new_and_slots\n  if you're curious.)\n\n\n4.2.1 (2016-05-26)\n==================\n\n- Fix the hashcode of C ``TimeStamp`` objects on 64-bit Python 3 on\n  Windows.\n\n\n4.2.0 (2016-05-05)\n==================\n\n- Fixed the Python(/PYPY) implementation ``TimeStamp.timeTime`` method\n  to have subsecond precision.\n\n- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning\n  the user's global wheel cache.\n\n- Add support for Python 3.5.\n\n- Drop support for Python 2.6 and 3.2.\n\n\n4.1.1 (2015-06-02)\n==================\n\n- Fix manifest and re-upload to fix stray files included in 4.1.0.\n\n\n4.1.0 (2015-05-19)\n==================\n\n- Make the Python implementation of ``Persistent`` and ``PickleCache``\n  behave more similarly to the C implementation. In particular, the\n  Python version can now run the complete ZODB and ZEO test suites.\n\n- Fix the hashcode of the Python ``TimeStamp`` on 32-bit platforms.\n\n\n4.0.9 (2015-04-08)\n==================\n\n- Make the C and Python ``TimeStamp`` objects behave more alike. The\n  Python version now produces the same ``repr`` and ``.raw()`` output as\n  the C version, and has the same hashcode. In addition, the Python\n  version is now supports ordering and equality like the C version.\n\n- Intern keys of object state in ``__setstate__`` to reduce memory usage\n  when unpickling multiple objects with the same attributes.\n\n- Add support for PyPy3.\n\n- 100% branch coverage.\n\n\n4.0.8 (2014-03-20)\n==================\n\n- Add support for Python 3.4.\n\n- In pure-Python ``Persistent``, avoid loading state in ``_p_activate``\n  for non-ghost objects (which could corrupt their state).  (PR #9)\n\n- In pure-Python, and don't throw ``POSKeyError`` if ``_p_activate`` is\n  called on an object that has never been committed.  (PR #9)\n\n- In pure-Python ``Persistent``, avoid calling a subclass's ``__setattr__``\n  at instance creation time. (PR #8)\n\n- Make it possible to delete ``_p_jar`` / ``_p_oid`` of a pure-Python\n  ``Persistent`` object which has been removed from the jar's cache\n  (fixes aborting a ZODB Connection that has added objects). (PR #7)\n\n\n4.0.7 (2014-02-20)\n==================\n\n- Avoid a KeyError from ``_p_accessed()`` on newly-created objects under\n  pure-Python:  these objects may be assigned to a jar, but not yet added\n  to its cache.  (PR #6)\n\n- Avoid a failure in ``Persistent.__setstate__`` when the state dict\n  contains exactly two keys.  (PR #5)\n\n- Fix a hang in ``picklecache`` invalidation if OIDs are manually passed\n  out-of-order. (PR #4)\n\n- Add ``PURE_PYTHON`` environment variable support:  if set, the C\n  extensions will not be built, imported, or tested.\n\n\n4.0.6 (2013-01-03)\n==================\n\n- Updated Trove classifiers.\n\n\n4.0.5 (2012-12-14)\n==================\n\n- Fixed the C-extensions under Py3k (previously they compiled but were\n  not importable).\n\n\n4.0.4 (2012-12-11)\n==================\n\n- Added support for Python 3.3.\n\n- C extenstions now build under Python 3.2, passing the same tests as\n  the pure-Python reference implementation.\n\n\n4.0.3 (2012-11-19)\n==================\n\n- Fixed: In the C implimentation, an integer was compared with a\n  pointer, with undefined results and a compiler warning.\n\n- Fixed: the Python implementation of the ``_p_estimated_size`` propety\n  didn't support deletion.\n\n- Simplified implementation of the ``_p_estimated_size`` property to\n  only accept integers.  A TypeError is raised if an incorrect type is\n  provided.\n\n\n4.0.2 (2012-08-27)\n==================\n\n- Correct initialization functions in renamed ``_timestamp`` extension.\n\n\n4.0.1 (2012-08-26)\n==================\n\n- Worked around test failure due to overflow to long on 32-bit systems.\n\n- Renamed ``TimeStamp`` extension module to avoid clash with pure-Python\n  ``timestamp`` module on case-insensitive filesystems.\n\n  N.B:  the canonical way to import the ``TimeStamp`` class is now::\n\n    from persistent.timestamp import TimeStamp\n\n  which will yield the class from the extension module (if available),\n  falling back to the pure-Python reference implementation.\n\n\n4.0.0 (2012-08-11)\n==================\n\nPlatform Changes\n----------------\n\n- Added explicit support for Python 3.2 and PyPy.\n\n  - Note that the C implementations of Persistent, PickleCache, and Timestamp\n    are not built (yet) on these platforms.\n\n- Dropped support for Python < 2.6.\n\nTesting Changes\n---------------\n\n- 100% unit test coverage.\n\n- Removed all ``ZODB``-dependent tests:\n\n  - Rewrote some to avoid the dependency\n\n  - Cloned the remainder into new ``ZODB.tests`` modules.\n\n- Refactored some doctests refactored as unittests.\n\n- Completed pure-Python reference implementations of 'Persistent',\n  'PickleCache', and 'TimeStamp'.\n\n- All covered platforms tested under ``tox``.\n\n- Added support for continuous integration using ``tox`` and ``jenkins``.\n\n- Added ``setup.py dev`` alias (installs ``nose`` and ``coverage``).\n\n- Dropped dependency on ``zope.testing`` / ``zope.testrunner``:  tests now\n  run with ``setup.py test``.\n\nDocumentation Changes\n---------------------\n\n- Refactored many Doctests as Sphinx documentation (snippets are exercised\n  via 'tox').\n\n- Added ``setup.py docs`` alias (installs ``Sphinx`` and\n  ``repoze.sphinx.autointerface``).\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Translucent persistent objects",
    "version": "5.2",
    "project_urls": {
        "Documentation": "https://persistent.readthedocs.io",
        "Homepage": "https://github.com/zopefoundation/persistent/",
        "Issue Tracker": "https://github.com/zopefoundation/persistent/issues",
        "Sources": "https://github.com/zopefoundation/persistent"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31d9b9578481c351efd75418321ee16cd47cedc8924c7a3932b9c65607db1b4f",
                "md5": "dd2e45ff75ec4d2e3d4398ed004712b6",
                "sha256": "3d0b464f5899bd8f88e8f6dd899f9b8c28bcd88bc4ae5147ba88e50d2a052d44"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd2e45ff75ec4d2e3d4398ed004712b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 146882,
            "upload_time": "2024-02-16T08:34:34",
            "upload_time_iso_8601": "2024-02-16T08:34:34.739470Z",
            "url": "https://files.pythonhosted.org/packages/31/d9/b9578481c351efd75418321ee16cd47cedc8924c7a3932b9c65607db1b4f/persistent-5.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e28fbaf71775d8a75a14fc8b11e73ed0728af557cb3a439697a031c87fcc3860",
                "md5": "bdfe7670ca0711d657d83d2d0a48e427",
                "sha256": "1e5902048cfb65606886e0f3b8a046ec8f5a332c59e5387368775b74c60d7a91"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bdfe7670ca0711d657d83d2d0a48e427",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 148488,
            "upload_time": "2024-02-16T08:34:37",
            "upload_time_iso_8601": "2024-02-16T08:34:37.505589Z",
            "url": "https://files.pythonhosted.org/packages/e2/8f/baf71775d8a75a14fc8b11e73ed0728af557cb3a439697a031c87fcc3860/persistent-5.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c751f7adf89cd256baed163900c8b09fa0e99c8b41eabd75c45012044564fb9",
                "md5": "81d3d2fbb66e91e2e0efa0bec47e1c74",
                "sha256": "626e7d38959035fe4c64c368892293f2b8979139871b009cd5dc38df816a6922"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "81d3d2fbb66e91e2e0efa0bec47e1c74",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 224318,
            "upload_time": "2024-02-16T08:34:42",
            "upload_time_iso_8601": "2024-02-16T08:34:42.601978Z",
            "url": "https://files.pythonhosted.org/packages/4c/75/1f7adf89cd256baed163900c8b09fa0e99c8b41eabd75c45012044564fb9/persistent-5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdd5fa3e4ac2510747595bb5653df7e41bd743f688c5c7b75a60ffd21c829d78",
                "md5": "fb23b9cffdf4410b48ac79af1bcd685f",
                "sha256": "ad87dedeb5a300cf2b7a654976a5ca0f8780a295ebd80dcf0129e46b86c7e572"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb23b9cffdf4410b48ac79af1bcd685f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 231407,
            "upload_time": "2024-02-16T08:35:01",
            "upload_time_iso_8601": "2024-02-16T08:35:01.610649Z",
            "url": "https://files.pythonhosted.org/packages/bd/d5/fa3e4ac2510747595bb5653df7e41bd743f688c5c7b75a60ffd21c829d78/persistent-5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cfd7730a52e13a3f36cf35e458d72ef51642aad30dba6806d4f4e8166e41cec",
                "md5": "e315e6022d3bf6054818bfdc7903d4d7",
                "sha256": "fd4ef824845569e3957b68d0fe04a0adfc7ed88fff74c08d4462d27ec98075e7"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e315e6022d3bf6054818bfdc7903d4d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 157045,
            "upload_time": "2024-02-16T08:38:07",
            "upload_time_iso_8601": "2024-02-16T08:38:07.123695Z",
            "url": "https://files.pythonhosted.org/packages/5c/fd/7730a52e13a3f36cf35e458d72ef51642aad30dba6806d4f4e8166e41cec/persistent-5.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcf7288cb3309f68cfa63cf536cc432a163e0de5d9c7c6b911ce3347edfaee93",
                "md5": "66b413b051a24d235d31de15270e745b",
                "sha256": "380a41350db0b118e4a12ac78cd4c47e0cf83fe51d9d2352aca3ef5946dee124"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66b413b051a24d235d31de15270e745b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 146869,
            "upload_time": "2024-02-16T08:34:32",
            "upload_time_iso_8601": "2024-02-16T08:34:32.760013Z",
            "url": "https://files.pythonhosted.org/packages/fc/f7/288cb3309f68cfa63cf536cc432a163e0de5d9c7c6b911ce3347edfaee93/persistent-5.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6b9a3e5f06a5aaf29455dd8a93ee689ec4944aa36cd3b08ecf610175c8a3a09",
                "md5": "52810250093f8126d0beceba50c88786",
                "sha256": "08d2acc2873e9b6b4cc9475e908f812dfbc72a1303e713d084480f6d6e8c547c"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "52810250093f8126d0beceba50c88786",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 148455,
            "upload_time": "2024-02-16T08:34:34",
            "upload_time_iso_8601": "2024-02-16T08:34:34.620929Z",
            "url": "https://files.pythonhosted.org/packages/c6/b9/a3e5f06a5aaf29455dd8a93ee689ec4944aa36cd3b08ecf610175c8a3a09/persistent-5.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a39e6febee5a5f9b8a74fbed20c101675c22c3a26962f844e34c118001c60f5",
                "md5": "ddc0e26624aaa7f950e86372edf78b6a",
                "sha256": "be7a377a6499a2494c1f4a43b54bf6a79468cd3971c7e7898df9554ed040787b"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ddc0e26624aaa7f950e86372edf78b6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 227294,
            "upload_time": "2024-02-16T08:34:44",
            "upload_time_iso_8601": "2024-02-16T08:34:44.004834Z",
            "url": "https://files.pythonhosted.org/packages/8a/39/e6febee5a5f9b8a74fbed20c101675c22c3a26962f844e34c118001c60f5/persistent-5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abd961fab480a78e709450115cf0299f95da6ce21dc751ceef64ac7e28aa073f",
                "md5": "1ed4bfd336433bd1c98014cb76924f8c",
                "sha256": "cf05883a28823f29e5472c85fdb484a961c7fdcf7b66ba2bd8077aa2b45ed422"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ed4bfd336433bd1c98014cb76924f8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 234423,
            "upload_time": "2024-02-16T08:35:03",
            "upload_time_iso_8601": "2024-02-16T08:35:03.735460Z",
            "url": "https://files.pythonhosted.org/packages/ab/d9/61fab480a78e709450115cf0299f95da6ce21dc751ceef64ac7e28aa073f/persistent-5.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc0c518e48e71c031b9cfaecc7398eafaa2ebd2f5d83c4077977d5427fe156ac",
                "md5": "53ac757a19745b66acf9e1119fc0a5b0",
                "sha256": "dd057d56e48c60e3e9a6138a96399fc17a5b24c3f36f5ae65383fe855f0a67fe"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53ac757a19745b66acf9e1119fc0a5b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 157044,
            "upload_time": "2024-02-16T08:39:39",
            "upload_time_iso_8601": "2024-02-16T08:39:39.285947Z",
            "url": "https://files.pythonhosted.org/packages/dc/0c/518e48e71c031b9cfaecc7398eafaa2ebd2f5d83c4077977d5427fe156ac/persistent-5.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc6353512a011faab7d898ac0d832724c194799185da9378d6a0fbce2c734350",
                "md5": "b4e3d62aa0264e5480393c9086441214",
                "sha256": "b5bde746804e700c7a78c7bbd70af41d823cdb96a071aaf78f0b31aa73a1054d"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4e3d62aa0264e5480393c9086441214",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 147246,
            "upload_time": "2024-02-16T08:35:41",
            "upload_time_iso_8601": "2024-02-16T08:35:41.504604Z",
            "url": "https://files.pythonhosted.org/packages/cc/63/53512a011faab7d898ac0d832724c194799185da9378d6a0fbce2c734350/persistent-5.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2bac3f46ae807fa2275545c7ae5c470e3cfd9b4da7dda8e727e0285912a4816",
                "md5": "de96cfe8583de2e8019ab242e188849d",
                "sha256": "97a4bfca9546deda3411a4d26596538e9454c6e0823d7d92b2fd06d5fd4a7b47"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "de96cfe8583de2e8019ab242e188849d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 148579,
            "upload_time": "2024-02-16T08:35:43",
            "upload_time_iso_8601": "2024-02-16T08:35:43.563335Z",
            "url": "https://files.pythonhosted.org/packages/e2/ba/c3f46ae807fa2275545c7ae5c470e3cfd9b4da7dda8e727e0285912a4816/persistent-5.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2f03e976122d699b7d82fcc900a0c07af610f9ccad873c585a079d68342e6b5",
                "md5": "ecaf057d86291977a3907562c0b25486",
                "sha256": "16321bdf950cf46ae78a2956de5f8f6a4c133765fbd1f6aa51767d001a948eec"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ecaf057d86291977a3907562c0b25486",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 231153,
            "upload_time": "2024-02-16T08:34:45",
            "upload_time_iso_8601": "2024-02-16T08:34:45.999953Z",
            "url": "https://files.pythonhosted.org/packages/c2/f0/3e976122d699b7d82fcc900a0c07af610f9ccad873c585a079d68342e6b5/persistent-5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdbb6be3e0ecd5a8b70700571993b5d1db470508e2543817be7a77e2b9061ded",
                "md5": "f862666a9d2a4f45466e9fdc8da520da",
                "sha256": "5c3944ef4531059b8ad3af913f6f3023211460411d4de558e6c6c9828f40261a"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f862666a9d2a4f45466e9fdc8da520da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 241125,
            "upload_time": "2024-02-16T08:35:05",
            "upload_time_iso_8601": "2024-02-16T08:35:05.703983Z",
            "url": "https://files.pythonhosted.org/packages/fd/bb/6be3e0ecd5a8b70700571993b5d1db470508e2543817be7a77e2b9061ded/persistent-5.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "204320035076a141eb1af1695efc7fbacee0f4b2a35063cc1df65e63f702a39c",
                "md5": "dc3703ece50b9c94443763d730c15cb7",
                "sha256": "74f53308eedd78a9d46279d4bd3e9ff5fcb307482a7d69355f34fc6e0ea960db"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc3703ece50b9c94443763d730c15cb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 157268,
            "upload_time": "2024-02-16T08:41:14",
            "upload_time_iso_8601": "2024-02-16T08:41:14.497237Z",
            "url": "https://files.pythonhosted.org/packages/20/43/20035076a141eb1af1695efc7fbacee0f4b2a35063cc1df65e63f702a39c/persistent-5.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4548fee993850705d6177c691fb92c054140cb1d06842f3adacb2d1bed966c23",
                "md5": "aaf8299b68540fd5bf2146303b2cdf22",
                "sha256": "63845ab0bead64813e2270dbe7350baf9c4e85a74084c05088cc6117f5f9b07e"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aaf8299b68540fd5bf2146303b2cdf22",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 147121,
            "upload_time": "2024-02-16T08:35:34",
            "upload_time_iso_8601": "2024-02-16T08:35:34.853826Z",
            "url": "https://files.pythonhosted.org/packages/45/48/fee993850705d6177c691fb92c054140cb1d06842f3adacb2d1bed966c23/persistent-5.2-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b7f6f3c452eba1eaae8e553cb77e73bd3b3dd8bfbad68313dba6d124bdaf85f",
                "md5": "5af4e9077c8f92db31a34c5bfe21fa0d",
                "sha256": "05a5fb6cd9cfadda48cab2e3b313358bc501ff63395b60b24d2eb9ae4d599b19"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5af4e9077c8f92db31a34c5bfe21fa0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 217978,
            "upload_time": "2024-02-16T08:34:47",
            "upload_time_iso_8601": "2024-02-16T08:34:47.428963Z",
            "url": "https://files.pythonhosted.org/packages/9b/7f/6f3c452eba1eaae8e553cb77e73bd3b3dd8bfbad68313dba6d124bdaf85f/persistent-5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bacfcf34a9399f92c46fa278e029ca68d193bd0b9aea78f764e417b87bce573",
                "md5": "dec31ed5bc64a37fa2a78f3dea127b31",
                "sha256": "9f9e316197afb8cd7626f0e5274889e6f95638fa6d1647468f58432995b613c9"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dec31ed5bc64a37fa2a78f3dea127b31",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 224733,
            "upload_time": "2024-02-16T08:35:07",
            "upload_time_iso_8601": "2024-02-16T08:35:07.647604Z",
            "url": "https://files.pythonhosted.org/packages/5b/ac/fcf34a9399f92c46fa278e029ca68d193bd0b9aea78f764e417b87bce573/persistent-5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f66f5b48f9798d05eacd7103286851e1d5ed1dd6feba1864775dc876c705c71d",
                "md5": "66f8b08f7ede14f0c8071c3a46384f70",
                "sha256": "8a782072c8f887a41d1b77db58973e7f1cf81f197b24b403d567f2e73145ca63"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "66f8b08f7ede14f0c8071c3a46384f70",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 156989,
            "upload_time": "2024-02-16T08:33:42",
            "upload_time_iso_8601": "2024-02-16T08:33:42.165113Z",
            "url": "https://files.pythonhosted.org/packages/f6/6f/5b48f9798d05eacd7103286851e1d5ed1dd6feba1864775dc876c705c71d/persistent-5.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3035c6ad0c88c788024d17fbc64737d7d6418365d7903a999d1d084419b7a745",
                "md5": "0616df1e898977520fb1d0753160b7fb",
                "sha256": "d260476cecff73d5a650a18aadae12b59e9a95134c8bca52709b6df2b0f881e8"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0616df1e898977520fb1d0753160b7fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 146868,
            "upload_time": "2024-02-16T08:35:35",
            "upload_time_iso_8601": "2024-02-16T08:35:35.435180Z",
            "url": "https://files.pythonhosted.org/packages/30/35/c6ad0c88c788024d17fbc64737d7d6418365d7903a999d1d084419b7a745/persistent-5.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "081aabd22a58b0548f24465c1f54354cf1fdc0da072470345313312893a1aac0",
                "md5": "5e671acf4f990fd7a8087b63a54d90a6",
                "sha256": "75dced28d5c24de36e776a1797b877a53bd220b9e1ef73203c7ca897bac0006a"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5e671acf4f990fd7a8087b63a54d90a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 148490,
            "upload_time": "2024-02-16T08:35:37",
            "upload_time_iso_8601": "2024-02-16T08:35:37.713583Z",
            "url": "https://files.pythonhosted.org/packages/08/1a/abd22a58b0548f24465c1f54354cf1fdc0da072470345313312893a1aac0/persistent-5.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4a12ce63a28cf47a55185fbbe4dd187a3a14bd316760bc18b093bf7dac09366",
                "md5": "ace719c89d40d94ff461a9ec422e0d16",
                "sha256": "00feefe3d02be951f8977640b32eade42c25e28ea21ac3d2df87ca5effd9b7fe"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ace719c89d40d94ff461a9ec422e0d16",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 226004,
            "upload_time": "2024-02-16T08:34:49",
            "upload_time_iso_8601": "2024-02-16T08:34:49.464237Z",
            "url": "https://files.pythonhosted.org/packages/a4/a1/2ce63a28cf47a55185fbbe4dd187a3a14bd316760bc18b093bf7dac09366/persistent-5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52c43f46fb87dad00c107a44acf9f543aa8edf0c7538e463c8a3f80de2166d2e",
                "md5": "0a1fb8441627da33fd7d9e66c9443e38",
                "sha256": "505b808e5885a7e9995f57e108c9044140bd0c1bda11bfdebbb65bbaa0a31bbe"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a1fb8441627da33fd7d9e66c9443e38",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 233065,
            "upload_time": "2024-02-16T08:35:09",
            "upload_time_iso_8601": "2024-02-16T08:35:09.639051Z",
            "url": "https://files.pythonhosted.org/packages/52/c4/3f46fb87dad00c107a44acf9f543aa8edf0c7538e463c8a3f80de2166d2e/persistent-5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "937e158b7b5a962ee68c4838358b83ee573fc3c9b663dead45128612afab127c",
                "md5": "7df04f9f5a1eb1790dafe5505dc8faa9",
                "sha256": "b55c28599e96333de4e383e481403a68256a116cc7f932dd6aef330590d2e326"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7df04f9f5a1eb1790dafe5505dc8faa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 157093,
            "upload_time": "2024-02-16T08:34:57",
            "upload_time_iso_8601": "2024-02-16T08:34:57.530693Z",
            "url": "https://files.pythonhosted.org/packages/93/7e/158b7b5a962ee68c4838358b83ee573fc3c9b663dead45128612afab127c/persistent-5.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "591913b5e6593526e746bc08dd0e84752f29e527ca5447d36b358c15e245e324",
                "md5": "1e28f38fb756c009100ffd058fb98c4a",
                "sha256": "e7866a65b109d2dfbb6390a3565be317dabd34e98f94a7fdab48e63c9b0e58c4"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e28f38fb756c009100ffd058fb98c4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 146874,
            "upload_time": "2024-02-16T08:35:46",
            "upload_time_iso_8601": "2024-02-16T08:35:46.489455Z",
            "url": "https://files.pythonhosted.org/packages/59/19/13b5e6593526e746bc08dd0e84752f29e527ca5447d36b358c15e245e324/persistent-5.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e873d9c986ec18d32f4d534aa11c6cb832482df3b38e9900e45ec502ff9a6d18",
                "md5": "1cf85220e9a3567d8edfb3b7f6858e53",
                "sha256": "876fb6418c8448fe4bd008b9c39f2fdd2b8667aad67d275ae0cc22724658b249"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1cf85220e9a3567d8edfb3b7f6858e53",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 148490,
            "upload_time": "2024-02-16T08:35:48",
            "upload_time_iso_8601": "2024-02-16T08:35:48.264248Z",
            "url": "https://files.pythonhosted.org/packages/e8/73/d9c986ec18d32f4d534aa11c6cb832482df3b38e9900e45ec502ff9a6d18/persistent-5.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe3835091429273133c735070fd8f0a50aeeb90d72d49d00213fa516236e540c",
                "md5": "a42bbdf066f3ee592077ef9cdc498982",
                "sha256": "c61e6d919caf7e64f7c72b6ff6d646ff5e3ff0ff08896771e274e654c94c660a"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a42bbdf066f3ee592077ef9cdc498982",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 223611,
            "upload_time": "2024-02-16T08:34:51",
            "upload_time_iso_8601": "2024-02-16T08:34:51.500486Z",
            "url": "https://files.pythonhosted.org/packages/fe/38/35091429273133c735070fd8f0a50aeeb90d72d49d00213fa516236e540c/persistent-5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f566f961fc596b1d8ef377b65850d1ff63bbe1edaa655dfc6b573c4021c7cdd4",
                "md5": "812a8f81844b3927dc273b9b09991ab6",
                "sha256": "46431175e8bba478838807d129d52787dcc5a803ffebafb177db50dd0e57332f"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "812a8f81844b3927dc273b9b09991ab6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 230616,
            "upload_time": "2024-02-16T08:35:12",
            "upload_time_iso_8601": "2024-02-16T08:35:12.275153Z",
            "url": "https://files.pythonhosted.org/packages/f5/66/f961fc596b1d8ef377b65850d1ff63bbe1edaa655dfc6b573c4021c7cdd4/persistent-5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b2c33c1c8328aa34c1637897d71f55ef2dc25c840221820060ba84e332ddda0",
                "md5": "ab507a0a33bd6960f1fb82cdc2c2f96a",
                "sha256": "8178a21d933054e830d755dc9e55886504d4ea694f050b82553708b32327a614"
            },
            "downloads": -1,
            "filename": "persistent-5.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ab507a0a33bd6960f1fb82cdc2c2f96a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 157042,
            "upload_time": "2024-02-16T08:36:33",
            "upload_time_iso_8601": "2024-02-16T08:36:33.405062Z",
            "url": "https://files.pythonhosted.org/packages/1b/2c/33c1c8328aa34c1637897d71f55ef2dc25c840221820060ba84e332ddda0/persistent-5.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7922b3a69a3018a90e68b6de957f811922cd95dbda42419e0f9792c7193b0433",
                "md5": "c220001a706fa6d595ac39c444fb7134",
                "sha256": "dbea5d1ff9db4e451ca39bc0b42a9ea537e6cac9282ae8c0780fb8ffae3ec834"
            },
            "downloads": -1,
            "filename": "persistent-5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "c220001a706fa6d595ac39c444fb7134",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 124717,
            "upload_time": "2024-02-16T08:32:15",
            "upload_time_iso_8601": "2024-02-16T08:32:15.066311Z",
            "url": "https://files.pythonhosted.org/packages/79/22/b3a69a3018a90e68b6de957f811922cd95dbda42419e0f9792c7193b0433/persistent-5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-16 08:32:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "persistent",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "appveyor": true,
    "tox": true,
    "lcname": "persistent"
}
        
Elapsed time: 0.18248s