===========================================================
``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://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
==========================
6.1 (2024-09-17)
================
- Add final support for Python 3.13.
- Removed ``persisent.cPersistence.simple_new`` fossil.
See https://github.com/zopefoundation/persistent/pull/208
6.0 (2024-05-30)
================
- Drop support for Python 3.7.
- Build Windows wheels on GHA.
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": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Zope Foundation and Contributors",
"author_email": "zodb-dev@zope.org",
"download_url": "https://files.pythonhosted.org/packages/33/ff/6e576c834287031b2482d17ecdee7541bfc8e514c684c2e2b93599073708/persistent-6.1.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://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\n6.1 (2024-09-17)\n================\n\n- Add final support for Python 3.13.\n\n- Removed ``persisent.cPersistence.simple_new`` fossil.\n See https://github.com/zopefoundation/persistent/pull/208\n\n6.0 (2024-05-30)\n================\n\n- Drop support for Python 3.7.\n\n- Build Windows wheels on GHA.\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": "6.1",
"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": "a52aaec035db2578c62a8664ccb9fbc3111ac15af1913f16a737f8e04c0c039f",
"md5": "b38ca0b72859eb3e4175572d98d0bed4",
"sha256": "8d28e79d5ccac8c77f807274d900628f5dd6ed9b56e46b6f2068fae40a895ea7"
},
"downloads": -1,
"filename": "persistent-6.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b38ca0b72859eb3e4175572d98d0bed4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 144639,
"upload_time": "2024-09-17T09:04:27",
"upload_time_iso_8601": "2024-09-17T09:04:27.411090Z",
"url": "https://files.pythonhosted.org/packages/a5/2a/aec035db2578c62a8664ccb9fbc3111ac15af1913f16a737f8e04c0c039f/persistent-6.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cacf4af932d1a79b89daa8b0379595483e1c27fe9171dd790c15cae716812c7b",
"md5": "03c5cf3806021f3888d04cb2cfe96203",
"sha256": "126ccf1bb2860f28a931271071bd73aad820bcee87913fe7613eb51e045c10e1"
},
"downloads": -1,
"filename": "persistent-6.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "03c5cf3806021f3888d04cb2cfe96203",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 147002,
"upload_time": "2024-09-17T09:04:29",
"upload_time_iso_8601": "2024-09-17T09:04:29.008979Z",
"url": "https://files.pythonhosted.org/packages/ca/cf/4af932d1a79b89daa8b0379595483e1c27fe9171dd790c15cae716812c7b/persistent-6.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f61018e06eeefde5d81b63a4cf9ef610c0348854c86cae0116241965c0bd2bd",
"md5": "0b4e013943aeb2f092b77132c2bbb19b",
"sha256": "1a6f8abd1b3a0beabee3083ff30ce12489f99942b106d86d9399c3b5639a8cb5"
},
"downloads": -1,
"filename": "persistent-6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0b4e013943aeb2f092b77132c2bbb19b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 232332,
"upload_time": "2024-09-17T09:36:34",
"upload_time_iso_8601": "2024-09-17T09:36:34.705714Z",
"url": "https://files.pythonhosted.org/packages/1f/61/018e06eeefde5d81b63a4cf9ef610c0348854c86cae0116241965c0bd2bd/persistent-6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec7da46a76c5ca94fde9f0987a773c50cf3bf962ada0c2d9c74dd1c682acef95",
"md5": "d3a3e2d57147dacc2579aeeee1d87f11",
"sha256": "ad33efef3c26ba3827d163f286cd6ce7dd45e5bb28d3bcd80939b839357205e3"
},
"downloads": -1,
"filename": "persistent-6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d3a3e2d57147dacc2579aeeee1d87f11",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 222774,
"upload_time": "2024-09-17T09:05:53",
"upload_time_iso_8601": "2024-09-17T09:05:53.572457Z",
"url": "https://files.pythonhosted.org/packages/ec/7d/a46a76c5ca94fde9f0987a773c50cf3bf962ada0c2d9c74dd1c682acef95/persistent-6.1-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": "72fc5c45d6b0ba534adfb1657fe0960d0ec0c99bcb351f52e5bbb00f246eb9c6",
"md5": "a9d864c3e0022dd284b6546b66b8659b",
"sha256": "86557a656214a6bf73c2d520ebc696640257bb77cedb6d9ed41757e4011bce89"
},
"downloads": -1,
"filename": "persistent-6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a9d864c3e0022dd284b6546b66b8659b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 229807,
"upload_time": "2024-09-17T09:05:47",
"upload_time_iso_8601": "2024-09-17T09:05:47.665137Z",
"url": "https://files.pythonhosted.org/packages/72/fc/5c45d6b0ba534adfb1657fe0960d0ec0c99bcb351f52e5bbb00f246eb9c6/persistent-6.1-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": "cd6ee687b6116e02ccb8a291e2e83c81935e7d7d5d3ec81aa4cacb7813444d9f",
"md5": "df6eaa7f89396e25838088fd3e60e64f",
"sha256": "19c8c3f019addabe97714d4a8611dab990a6e7cfd07960705ae23bc89de536de"
},
"downloads": -1,
"filename": "persistent-6.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "df6eaa7f89396e25838088fd3e60e64f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 127983,
"upload_time": "2024-09-17T09:04:28",
"upload_time_iso_8601": "2024-09-17T09:04:28.633601Z",
"url": "https://files.pythonhosted.org/packages/cd/6e/e687b6116e02ccb8a291e2e83c81935e7d7d5d3ec81aa4cacb7813444d9f/persistent-6.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08e21356c7537d5481a3e2a1d322558fe73d8e014dc413ffd5ea0a3393b1fea3",
"md5": "7616dd26e524024b467eed2d8aa3cf60",
"sha256": "9e77ab43c8ad50b9e3d521c5f33bf85be78765553dae6cc8208b3f3118bef2ff"
},
"downloads": -1,
"filename": "persistent-6.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7616dd26e524024b467eed2d8aa3cf60",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 144638,
"upload_time": "2024-09-17T09:03:05",
"upload_time_iso_8601": "2024-09-17T09:03:05.604913Z",
"url": "https://files.pythonhosted.org/packages/08/e2/1356c7537d5481a3e2a1d322558fe73d8e014dc413ffd5ea0a3393b1fea3/persistent-6.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fea13751c41c1f7dfb3acffed72ac884d557f68a8d8373ae35266a8e2325e539",
"md5": "eef875ffa16a36d78f6f10eaa78d1ef9",
"sha256": "8c04dee2c1bdc9f7c9b53888ca2cf9fe80d2be7f15750571dab5b76feb4b26ab"
},
"downloads": -1,
"filename": "persistent-6.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "eef875ffa16a36d78f6f10eaa78d1ef9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 147007,
"upload_time": "2024-09-17T09:03:07",
"upload_time_iso_8601": "2024-09-17T09:03:07.020775Z",
"url": "https://files.pythonhosted.org/packages/fe/a1/3751c41c1f7dfb3acffed72ac884d557f68a8d8373ae35266a8e2325e539/persistent-6.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f58944826ef5b0298eb57c6f51f701501816b98628d07b673415cb04deeab80",
"md5": "01cdd0a16d64233e137687d2b3a42774",
"sha256": "5ab3054949ce3e358b044871b39e620aa549a81bf994ba223018d167c868d3b7"
},
"downloads": -1,
"filename": "persistent-6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "01cdd0a16d64233e137687d2b3a42774",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 235173,
"upload_time": "2024-09-17T09:36:36",
"upload_time_iso_8601": "2024-09-17T09:36:36.952186Z",
"url": "https://files.pythonhosted.org/packages/9f/58/944826ef5b0298eb57c6f51f701501816b98628d07b673415cb04deeab80/persistent-6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15b76321a319f11b452b11c463b703c1b15fd743b8f81f65f1f23471931a3e35",
"md5": "b9ffdca9f34f0b41525b648a0378543d",
"sha256": "3be0c172aa113a6e51dcb88d43378f284aba5c4d808daf9c449cd3450e5bc374"
},
"downloads": -1,
"filename": "persistent-6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b9ffdca9f34f0b41525b648a0378543d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 225706,
"upload_time": "2024-09-17T09:05:54",
"upload_time_iso_8601": "2024-09-17T09:05:54.905867Z",
"url": "https://files.pythonhosted.org/packages/15/b7/6321a319f11b452b11c463b703c1b15fd743b8f81f65f1f23471931a3e35/persistent-6.1-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": "f0bcb491c3590a930bcb0fd545190cdd94c15c848dcdcdf8b6212b159bcc5c60",
"md5": "4a940cf77adf9ffce28e4af0be66b02a",
"sha256": "264ea5bc7958000e592ff9ad527148ea2e44d88e63692f4a05033c371e340972"
},
"downloads": -1,
"filename": "persistent-6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4a940cf77adf9ffce28e4af0be66b02a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 232807,
"upload_time": "2024-09-17T09:05:49",
"upload_time_iso_8601": "2024-09-17T09:05:49.516423Z",
"url": "https://files.pythonhosted.org/packages/f0/bc/b491c3590a930bcb0fd545190cdd94c15c848dcdcdf8b6212b159bcc5c60/persistent-6.1-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": "44bb2be8989dfdeb02a15a167cd0f0ac8b081afe9f467a3eba086f98fdd910b0",
"md5": "bd4cddd8af8b523574658a798b6e5c6c",
"sha256": "89c6420275d4f548cf7a3426b02b9c5f7a8fdeb66c413d137141f386168e797d"
},
"downloads": -1,
"filename": "persistent-6.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "bd4cddd8af8b523574658a798b6e5c6c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 127991,
"upload_time": "2024-09-17T09:04:24",
"upload_time_iso_8601": "2024-09-17T09:04:24.984136Z",
"url": "https://files.pythonhosted.org/packages/44/bb/2be8989dfdeb02a15a167cd0f0ac8b081afe9f467a3eba086f98fdd910b0/persistent-6.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2299b96ab1f9b6e57a3e74463e34332aa730651729faeef9c88017dfd387a71f",
"md5": "764619026351ada64f5ee7a347d4721d",
"sha256": "8aafc5b8d7bc918997a22ea168a38e06f4343013a8fa4cbc857a9fab251367ad"
},
"downloads": -1,
"filename": "persistent-6.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "764619026351ada64f5ee7a347d4721d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 145151,
"upload_time": "2024-09-17T09:02:55",
"upload_time_iso_8601": "2024-09-17T09:02:55.741420Z",
"url": "https://files.pythonhosted.org/packages/22/99/b96ab1f9b6e57a3e74463e34332aa730651729faeef9c88017dfd387a71f/persistent-6.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc20454b68954148f2b3607880b6b5991fea8ca402d8d2dd9aae3c359936667f",
"md5": "8424c7fc793984c9d82a4d3523127ec6",
"sha256": "4b15cd9ad8810388b1ae43d52733cafc04307cc9b3af63619eb8164d90ae14d6"
},
"downloads": -1,
"filename": "persistent-6.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8424c7fc793984c9d82a4d3523127ec6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 147104,
"upload_time": "2024-09-17T09:02:58",
"upload_time_iso_8601": "2024-09-17T09:02:58.007454Z",
"url": "https://files.pythonhosted.org/packages/cc/20/454b68954148f2b3607880b6b5991fea8ca402d8d2dd9aae3c359936667f/persistent-6.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9328f9772cd88dfe6854c8865e7c61aecaa6a0ad6e668c848968c1cdef31dc0c",
"md5": "a66374a3d2ee4fb497bb06a33d6c3f9c",
"sha256": "d626204286f84cfd4feef39387732d18832c76afbcba2bba4eee03b1ae759e8a"
},
"downloads": -1,
"filename": "persistent-6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a66374a3d2ee4fb497bb06a33d6c3f9c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 240995,
"upload_time": "2024-09-17T09:36:38",
"upload_time_iso_8601": "2024-09-17T09:36:38.598682Z",
"url": "https://files.pythonhosted.org/packages/93/28/f9772cd88dfe6854c8865e7c61aecaa6a0ad6e668c848968c1cdef31dc0c/persistent-6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e557095d734ad7e6895d2d474be52afe6643d9d67b4927f76afd8dbef19a112",
"md5": "d9ad192046e59fdc24fc81f8323e3228",
"sha256": "c741c8461f9454828650850fc21687b57801839bb960c080f5823f54cd49fb85"
},
"downloads": -1,
"filename": "persistent-6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d9ad192046e59fdc24fc81f8323e3228",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 229470,
"upload_time": "2024-09-17T09:05:57",
"upload_time_iso_8601": "2024-09-17T09:05:57.210271Z",
"url": "https://files.pythonhosted.org/packages/8e/55/7095d734ad7e6895d2d474be52afe6643d9d67b4927f76afd8dbef19a112/persistent-6.1-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": "98d8f53cca4242e564c4be0e11846c57d8db0b9559fe038866061f02c891460a",
"md5": "d0b446765e6c83865707bf5022d89b47",
"sha256": "2111566a7ac526240e37a4b2363cb9ebe40838369d363950222f15b5482cf944"
},
"downloads": -1,
"filename": "persistent-6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d0b446765e6c83865707bf5022d89b47",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 239330,
"upload_time": "2024-09-17T09:05:50",
"upload_time_iso_8601": "2024-09-17T09:05:50.833884Z",
"url": "https://files.pythonhosted.org/packages/98/d8/f53cca4242e564c4be0e11846c57d8db0b9559fe038866061f02c891460a/persistent-6.1-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": "2c6883080646ba4667dace35769879eec358912d2e30e67b9592dcfa6f223339",
"md5": "75e581d2c880a48d8a20cd0c48dcde12",
"sha256": "93b5943db6795f06f85010f9f038dc10ddd03c017dccf5ba87ef22ad6370e11f"
},
"downloads": -1,
"filename": "persistent-6.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "75e581d2c880a48d8a20cd0c48dcde12",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 128279,
"upload_time": "2024-09-17T09:04:09",
"upload_time_iso_8601": "2024-09-17T09:04:09.453913Z",
"url": "https://files.pythonhosted.org/packages/2c/68/83080646ba4667dace35769879eec358912d2e30e67b9592dcfa6f223339/persistent-6.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7802f09f7e3712baa1a097d0994fac9b8656cc111d8f6051eb3ad317ffdbe872",
"md5": "360af0ab8ab66afe353f93be3c9dcc3c",
"sha256": "ade3bfe8f8583c504368d6cb122cc10cdbd7400bc65504b7d601c51a490b1702"
},
"downloads": -1,
"filename": "persistent-6.1-cp313-cp313-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "360af0ab8ab66afe353f93be3c9dcc3c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 145149,
"upload_time": "2024-09-17T09:03:18",
"upload_time_iso_8601": "2024-09-17T09:03:18.483665Z",
"url": "https://files.pythonhosted.org/packages/78/02/f09f7e3712baa1a097d0994fac9b8656cc111d8f6051eb3ad317ffdbe872/persistent-6.1-cp313-cp313-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54510ffa0146108722dec0226a7b9e5fa84e4b4f801b0713ce6564c06fd8bc98",
"md5": "c46f2245b584266cd8ed5672c22dd699",
"sha256": "f18bf43306bb590e43c97c525000b76cb9ed4478f9bbc10ba9ee817648c9b0a1"
},
"downloads": -1,
"filename": "persistent-6.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c46f2245b584266cd8ed5672c22dd699",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 147101,
"upload_time": "2024-09-17T09:03:19",
"upload_time_iso_8601": "2024-09-17T09:03:19.777105Z",
"url": "https://files.pythonhosted.org/packages/54/51/0ffa0146108722dec0226a7b9e5fa84e4b4f801b0713ce6564c06fd8bc98/persistent-6.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b10b131a6fb015ed45e89147b751042c91837bb63173e741b1748e0722d6cb5",
"md5": "22aabbc0f268b507c6cd4ca7ec21ddac",
"sha256": "2c6c2798b565ac1903b7062ef11a61260cd44257ab1e50c9d6819f42d8598e68"
},
"downloads": -1,
"filename": "persistent-6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "22aabbc0f268b507c6cd4ca7ec21ddac",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 240703,
"upload_time": "2024-09-17T09:36:40",
"upload_time_iso_8601": "2024-09-17T09:36:40.543034Z",
"url": "https://files.pythonhosted.org/packages/0b/10/b131a6fb015ed45e89147b751042c91837bb63173e741b1748e0722d6cb5/persistent-6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4072229f5784aa54df3a3109baeb20783cc63e773b4710b18851c55c696433a",
"md5": "c4d89569087504d22c4752582ee0c990",
"sha256": "d14253dc90645d50241d0a7f57e04bffcda009cd6f9a96900b0c4d8071add781"
},
"downloads": -1,
"filename": "persistent-6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c4d89569087504d22c4752582ee0c990",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 229196,
"upload_time": "2024-09-17T09:05:59",
"upload_time_iso_8601": "2024-09-17T09:05:59.246716Z",
"url": "https://files.pythonhosted.org/packages/b4/07/2229f5784aa54df3a3109baeb20783cc63e773b4710b18851c55c696433a/persistent-6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9690f86528728293c2604d6b7c9824db259a566d01688269eab52232436b7e76",
"md5": "8ab075b776cebb1da2f0f269531e5a93",
"sha256": "f262511534adea3157afc606aa93f041e62479cc2f238505eeb202e2f117dc22"
},
"downloads": -1,
"filename": "persistent-6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8ab075b776cebb1da2f0f269531e5a93",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 238986,
"upload_time": "2024-09-17T09:05:52",
"upload_time_iso_8601": "2024-09-17T09:05:52.086627Z",
"url": "https://files.pythonhosted.org/packages/96/90/f86528728293c2604d6b7c9824db259a566d01688269eab52232436b7e76/persistent-6.1-cp313-cp313-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": "ddf30c18a8523d5eeb2d05d6e1b5587b37e55330a245cdfdde82659ebbcdaada",
"md5": "7de467b2fdeffc19c892a5490a5f80b7",
"sha256": "9839c16817fca6eb076137882f652dfdd7ed1e06154ac2b415bfee97f65bbea5"
},
"downloads": -1,
"filename": "persistent-6.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "7de467b2fdeffc19c892a5490a5f80b7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 128289,
"upload_time": "2024-09-17T09:04:29",
"upload_time_iso_8601": "2024-09-17T09:04:29.018159Z",
"url": "https://files.pythonhosted.org/packages/dd/f3/0c18a8523d5eeb2d05d6e1b5587b37e55330a245cdfdde82659ebbcdaada/persistent-6.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f0474d78c3da0776f8521c80f2a537f0c0a5cb7df1179f5835c07926308996f6",
"md5": "75e7e4024148cf15e160a5df2bfef7f9",
"sha256": "b78f6a5bf79fb164b534d808e71fd8a19aa8f16f83571ce13d8f21aaf12b3547"
},
"downloads": -1,
"filename": "persistent-6.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "75e7e4024148cf15e160a5df2bfef7f9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 144633,
"upload_time": "2024-09-17T09:03:27",
"upload_time_iso_8601": "2024-09-17T09:03:27.866631Z",
"url": "https://files.pythonhosted.org/packages/f0/47/4d78c3da0776f8521c80f2a537f0c0a5cb7df1179f5835c07926308996f6/persistent-6.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64325d5b8a64682006ff04c77a67b0cbbfed5664707b1a8d885178c2b071aa3f",
"md5": "0a9cc6e75dde6768bd5d43b1891b11b8",
"sha256": "b9ee0fadb7a54249f57e4c44d7105bc14daa9e01cbcff761fc19c8b04b752292"
},
"downloads": -1,
"filename": "persistent-6.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0a9cc6e75dde6768bd5d43b1891b11b8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 147002,
"upload_time": "2024-09-17T09:03:29",
"upload_time_iso_8601": "2024-09-17T09:03:29.693967Z",
"url": "https://files.pythonhosted.org/packages/64/32/5d5b8a64682006ff04c77a67b0cbbfed5664707b1a8d885178c2b071aa3f/persistent-6.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73d332eb5c6ed4b10ba8c09add74a8e85a7fe46792fe43576e63d7909fd68fc0",
"md5": "680f3428bb7c3383a5da258613913062",
"sha256": "a8f73e71d062e84f6501b976a1dd58bc4eaf2f3bc110550d4e712f4c91f7fd48"
},
"downloads": -1,
"filename": "persistent-6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "680f3428bb7c3383a5da258613913062",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 233900,
"upload_time": "2024-09-17T09:36:42",
"upload_time_iso_8601": "2024-09-17T09:36:42.995402Z",
"url": "https://files.pythonhosted.org/packages/73/d3/32eb5c6ed4b10ba8c09add74a8e85a7fe46792fe43576e63d7909fd68fc0/persistent-6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37ed8aa77d18fcfe7bb8034bd4f021ddb5b421eba675917b1bdb1f947a5f0a08",
"md5": "e38d66d30ece1c9a20d3dd9bce477ab4",
"sha256": "f3d5b6e6466099ca4c003e70ff1a22aa9bfa1ff30a8435e02cceeb27b66269cb"
},
"downloads": -1,
"filename": "persistent-6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e38d66d30ece1c9a20d3dd9bce477ab4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 224632,
"upload_time": "2024-09-17T09:06:01",
"upload_time_iso_8601": "2024-09-17T09:06:01.186527Z",
"url": "https://files.pythonhosted.org/packages/37/ed/8aa77d18fcfe7bb8034bd4f021ddb5b421eba675917b1bdb1f947a5f0a08/persistent-6.1-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": "416896d2804621ac38df829b4af9e84353a8c9a342b3a5313cd5636c3bce9897",
"md5": "34b2ab433cb88f375489a848f38810bb",
"sha256": "0e6e78058b047b01ab482e6df5986319c2cf9e86f2783a560df474dd743426ff"
},
"downloads": -1,
"filename": "persistent-6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "34b2ab433cb88f375489a848f38810bb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 231562,
"upload_time": "2024-09-17T09:05:53",
"upload_time_iso_8601": "2024-09-17T09:05:53.922712Z",
"url": "https://files.pythonhosted.org/packages/41/68/96d2804621ac38df829b4af9e84353a8c9a342b3a5313cd5636c3bce9897/persistent-6.1-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": "5e612bf5702779dd960d750e86b30169111577c80de970be1417a6f10a1682a2",
"md5": "d348f0758ac0d56483f05818a31a4e4d",
"sha256": "e4debce7452da384de244c9ac8605ceb4e42178eea6af16069847628dfc16f6e"
},
"downloads": -1,
"filename": "persistent-6.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "d348f0758ac0d56483f05818a31a4e4d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 127967,
"upload_time": "2024-09-17T09:04:04",
"upload_time_iso_8601": "2024-09-17T09:04:04.154792Z",
"url": "https://files.pythonhosted.org/packages/5e/61/2bf5702779dd960d750e86b30169111577c80de970be1417a6f10a1682a2/persistent-6.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85745ff712e2bfea8fc4bad7ba45dec3b26885b4449c4e67ce74d462c792ac3b",
"md5": "9be996af114cd7ef5f5ee3c827b71770",
"sha256": "75a84482a0d05868f56630efcc2c36ad0218bc52e5f4c9c4f7bb38450755c942"
},
"downloads": -1,
"filename": "persistent-6.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9be996af114cd7ef5f5ee3c827b71770",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 144632,
"upload_time": "2024-09-17T09:03:37",
"upload_time_iso_8601": "2024-09-17T09:03:37.243073Z",
"url": "https://files.pythonhosted.org/packages/85/74/5ff712e2bfea8fc4bad7ba45dec3b26885b4449c4e67ce74d462c792ac3b/persistent-6.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "683dbe1e0eb7ad5e24ad6f50c18a7a9e33413fe3e0f250864bfe840c9e87e734",
"md5": "9234ab3f24c8c093523500339e7a8e93",
"sha256": "9896dc5bf945a3427e7a4e310b2e30266e90df75de5288e4cf9376b110f08fc4"
},
"downloads": -1,
"filename": "persistent-6.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9234ab3f24c8c093523500339e7a8e93",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 147014,
"upload_time": "2024-09-17T09:03:39",
"upload_time_iso_8601": "2024-09-17T09:03:39.049429Z",
"url": "https://files.pythonhosted.org/packages/68/3d/be1e0eb7ad5e24ad6f50c18a7a9e33413fe3e0f250864bfe840c9e87e734/persistent-6.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "955d1009429c217670657f473e4a2065ae4418650efc3c7baa0378156cdee14a",
"md5": "9a95b434996d8a4d60a7051aee7180bb",
"sha256": "af49c9e7e212c7272d3e927b69cf2cca26d390168cac66a004bb3e474bb18615"
},
"downloads": -1,
"filename": "persistent-6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9a95b434996d8a4d60a7051aee7180bb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 231378,
"upload_time": "2024-09-17T09:36:44",
"upload_time_iso_8601": "2024-09-17T09:36:44.863567Z",
"url": "https://files.pythonhosted.org/packages/95/5d/1009429c217670657f473e4a2065ae4418650efc3c7baa0378156cdee14a/persistent-6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30af4ac3ea4d5426d2bd4a5d2f523b5054875bad366f92dc0b94e7169a41f7b3",
"md5": "d25cd27ae9bb97887a22e3f46fc63c67",
"sha256": "ab119c1db5a7d3fe5380809d038eef5518e32da6ddf0d2fc3045dc180253b695"
},
"downloads": -1,
"filename": "persistent-6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d25cd27ae9bb97887a22e3f46fc63c67",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 222041,
"upload_time": "2024-09-17T09:06:02",
"upload_time_iso_8601": "2024-09-17T09:06:02.369383Z",
"url": "https://files.pythonhosted.org/packages/30/af/4ac3ea4d5426d2bd4a5d2f523b5054875bad366f92dc0b94e7169a41f7b3/persistent-6.1-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": "3cf1043f6911e26143cc64555cfb6020ad13285b54350db1c78e2f135fe3e918",
"md5": "dce38f0c1f0c92b5bb71d1baff9c9451",
"sha256": "5029dfbb1156ee3492bb88a55aad6401ec404532617eaa50855057cfd095738f"
},
"downloads": -1,
"filename": "persistent-6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dce38f0c1f0c92b5bb71d1baff9c9451",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 229023,
"upload_time": "2024-09-17T09:05:55",
"upload_time_iso_8601": "2024-09-17T09:05:55.803307Z",
"url": "https://files.pythonhosted.org/packages/3c/f1/043f6911e26143cc64555cfb6020ad13285b54350db1c78e2f135fe3e918/persistent-6.1-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": "227a61cced0c715582ef6b7b9fa55c505e434a8e7f7ad84e0bd44c2a1adcba90",
"md5": "64309daf89dd84ef55c88f5a4156b660",
"sha256": "7602ab4ad86d82d9aeb41d67c34c898e67ccaa60dbc206af8e03433a4ec78902"
},
"downloads": -1,
"filename": "persistent-6.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "64309daf89dd84ef55c88f5a4156b660",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 127985,
"upload_time": "2024-09-17T09:04:03",
"upload_time_iso_8601": "2024-09-17T09:04:03.490510Z",
"url": "https://files.pythonhosted.org/packages/22/7a/61cced0c715582ef6b7b9fa55c505e434a8e7f7ad84e0bd44c2a1adcba90/persistent-6.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33ff6e576c834287031b2482d17ecdee7541bfc8e514c684c2e2b93599073708",
"md5": "48ec39a6620f1f838d09b5a42014f4db",
"sha256": "aa17e6e4849738d080706ebe6c79ec8db0f4ab2c87975f9b34249eaf7a965867"
},
"downloads": -1,
"filename": "persistent-6.1.tar.gz",
"has_sig": false,
"md5_digest": "48ec39a6620f1f838d09b5a42014f4db",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 128681,
"upload_time": "2024-09-17T09:38:42",
"upload_time_iso_8601": "2024-09-17T09:38:42.929722Z",
"url": "https://files.pythonhosted.org/packages/33/ff/6e576c834287031b2482d17ecdee7541bfc8e514c684c2e2b93599073708/persistent-6.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-17 09:38:42",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "zopefoundation",
"github_project": "persistent",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "persistent"
}