zope.security


Namezope.security JSON
Version 6.1 PyPI version JSON
download
home_pagehttp://github.com/zopefoundation/zope.security
SummaryZope Security Framework
upload_time2023-01-18 07:48:38
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords zope security policy principal permission
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ===================
 ``zope.security``
===================

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

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

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

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

.. image:: https://img.shields.io/pypi/v/zope.security.svg
        :target: https://pypi.python.org/pypi/zope.security/
        :alt: Latest release

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


The Security framework provides a generic mechanism to implement security
policies on Python objects.

Documentation is available at https://zopesecurity.readthedocs.io/


=========
 Changes
=========

6.1 (2023-01-18)
================

- Remove more proxying code for names that no longer exist in Python 3.
  (`#92 <https://github.com/zopefoundation/zope.security/issues/92>`_)


6.0 (2023-01-16)
================

- Remove proxying code for names that no longer exist in Python 3.
  (`#92 <https://github.com/zopefoundation/zope.security/issues/92>`_)

- Drop support for Python 2.7, 3.5, 3.6.


5.8 (2022-11-30)
================

- The extra ``untrustedpython`` now for Python 3, too, installs
  ``zope.untrustedpython``.


5.7 (2022-11-17)
================

- Release to rebuild full set of binary wheels.


5.6 (2022-11-16)
================

- Add support for building arm64 wheels on macOS.


5.5 (2022-11-06)
================

- Add support for final release of Python 3.11.


5.4 (2022-09-15)
================

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


5.3 (2022-04-27)
================

- Allow calling bound methods of some built-in objects such as ``().__repr__``
  and ``{}.__repr__`` by default. This worked on Python 2, but raised
  ``ForbiddenAttribute`` on Python 3. See `issue 75
  <https://github.com/zopefoundation/zope.security/issues/75>`_.

- Remove usage of ``unittest.makeSuite`` as it is deprecated in Python 3.11+.
  See `issue 83
  <https://github.com/zopefoundation/zope.security/issues/83>`_.

- Add support for Python 3.11 (as of 3.11.0a7).


5.2 (2022-03-10)
================

- Add support for Python 3.9 and 3.10.


5.1.1 (2020-03-23)
==================

- Ensure all objects have consistent interface resolution orders (if
  all dependencies are up-to-date). See `issue 71
  <https://github.com/zopefoundation/zope.security/issues/71>`_.


5.1.0 (2020-02-14)
==================

- Let proxied interfaces be iterated on Python 3. This worked on
  Python 2, but raised ``ForbiddenAttribute`` an Python 3. See
  `zope.interface issue 141 <https://github.com/zopefoundation/zope.interface/issues/141>`_.

- Allow to use a common Sphinx version for Python 2 and 3.


5.0.0 (2019-11-11)
==================

- Drop support for Python 3.4.

- Add support for Python 3.8.

- Properly declare dependency on zope.schema >= 4.2.0, introduced in
  zope.security 4.2.1.

- Fix dict item view iteration on PyPy3 7.x.


4.3.1 (2019-01-03)
==================

- Fix the decimal.Decimal checker, ``__truediv__`` was missing causing
  ``ForbiddenAttribute`` on a ``ProxyFactory(Decimal('1')) / 1`` operation


4.3.0 (2018-08-24)
==================

- Add the interface ``ISystemPrincipal`` and make
  ``zope.security.management.system_user`` a regular object that
  implements this interface. This facilitates providing adapter
  registrations specifically for the ``system_user``.


4.2.3 (2018-08-09)
==================

- Add support for Python 3.7.


4.2.2 (2018-01-11)
==================

- Make the pure-Python proxy on Python 2 *not* check permissions for
  ``__unicode__`` just like the C implementation. Note that
  ``__str__`` is checked for both implementations on both Python 2 and
  3, but if there is no ``__unicode__`` method defined, Python 2's
  automatic fallback to ``__str__`` is **not** checked when
  ``unicode`` is called. See `issue 10
  <https://github.com/zopefoundation/zope.security/issues/10>`_.


4.2.1 (2017-11-30)
==================

- Fix the default values for ``Permission`` fields ``title`` and
  ``description`` under Python 2. See `issue 48
  <https://github.com/zopefoundation/zope.security/issues/48>`_.

- Change the ``IPermission.id`` from ``Text`` (unicode) to a
  ``NativeStringLine``. This matches what ZCML creates and what is
  usually written in source code.


4.2.0 (2017-09-20)
==================

- Fix the extremely rare potential for a crash when the C extensions
  are in use. See `issue 35 <https://github.com/zopefoundation/zope.security/issues/35>`_.

- Fix `issue 7
  <https://github.com/zopefoundation/zope.security/issues/7>`_: The
  pure-Python proxy didn't propagate ``TypeError`` from ``__repr__``
  and ``__str__`` like the C implementation did.

- Fix `issue 27 <https://github.com/zopefoundation/zope.security/issues/27>`_:
  iteration of ``zope.interface.providedBy()`` is now allowed by
  default on all versions of Python. Previously it only worked on
  Python 2. Note that ``providedBy`` returns unproxied objects for backwards
  compatibility.

- Fix ``__length_hint__`` of proxied iterator objects. Previously it
  was ignored.

- Drop support for Python 3.3.

- Enable coveralls.io for coverage measurement and run doctests on all
  supported Python versions.

- Fix `issue 9
  <https://github.com/zopefoundation/zope.security/issues/9>`_:
  iteration of ``itertools.groupby`` objects is now allowed by
  default. In addition, iteration of all the custom iterator types
  defined in itertools are also allowed by default.

- Simplify the internal ``_compat.py`` module now that we only run on
  newer Python versions. See `PR 32 <https://github.com/zopefoundation/zope.security/pull/32>`_.

- Respect ``PURE_PYTHON`` at runtime. At build time, always try to
  build the C extensions on supported platforms, ignoring
  ``PURE_PYTHON``. See `issue 33
  <https://github.com/zopefoundation/zope.security/issues/33>`_.

- Fix watching checkers (``ZOPE_WATCH_CHECKERS=1``) in pure-Python
  mode. See `issue 8 <https://github.com/zopefoundation/zope.security/issues/8>`_.

- Remove unused internal files from ``tests/``.

- Remove ``zope.security.setup``. It was unused and did not work
  anyway.

- Fix the pure-Python proxy on Python 2 letting ``__getslice__`` and
  ``__setslice__`` fall through to ``__getitem__`` or ``__setitem__``,
  respectively, if it raised an error.

- Fix the pure-Python proxy calling a wrapped ``__getattr__`` or
  ``__getattribute__`` more than once in situations where the C
  implementation only called it one time (when it raised an
  AttributeError).

- Reach 100% test coverage and maintain it via automated checks.

4.1.1 (2017-05-17)
==================

- Fix `issue 23 <https://github.com/zopefoundation/zope.security/issues/23>`_:
  iteration of ``collections.OrderedDict`` and its various views is
  now allowed by default on all versions of Python.

- As a further fix for issue 20, iteration of ``BTree`` itself is now
  allowed by default.

4.1.0 (2017-04-24)
==================

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

- Drop support for Python 2.6 and 3.2.

- Add support for Python 3.5 and 3.6.

- Fix `issue 20 <https://github.com/zopefoundation/zope.security/issues/20>`_:
  iteration of pure-Python ``BTrees.items()``, and also creating a list from
  ``BTrees.items()`` on Python 3. The same applies for ``keys()`` and ``values()``.

4.0.3 (2015-06-02)
==================

- Fix iteration over security proxies in Python 3 using the pure-Python
  implementation.

4.0.2 (2015-06-02)
==================

- Fix compatibility with ``zope.proxy`` 4.1.5 under PyPy.

- Fix the very first call to ``removeSecurityProxy`` returning
  incorrect results if given a proxy under PyPy.

4.0.1 (2014-03-19)
==================

- Add support for Python 3.4.

4.0.0 (2013-07-09)
==================

- Update ``boostrap.py`` to version 2.2.

- Bugfix: ZOPE_WATCH_CHECKERS=2 used to incorrectly suppress
  unauthorized/forbidden warnings.

- Bugfix: ZOPE_WATCH_CHECKERS=1 used to miss most of the checks.


4.0.0b1 (2013-03-11)
====================

- Add support for PyPy.

- Fix extension compilation on windows python 3.x


4.0.0a5 (2013-02-28)
====================

- Undo changes from 4.0.0a4. Instead, ``zope.untrustedpython`` is only
  included during Python 2 installs.


4.0.0a4 (2013-02-28)
====================

- Remove ``untrustedpython`` extra again, since we do not want to support
  ``zope.untrustedpython`` in ZTK 2.0. If BBB is really needed, we will create
  a 3.10.0 release.

4.0.0a3 (2013-02-15)
====================

- Fix test breakage in 4.0.0a2 due to deprecation strategy.

4.0.0a2 (2013-02-15)
====================

- Add back the ``untrustedpython`` extra:  now pulls in
  ``zope.untrustedpython``.  Restored deprecated backward-compatible imports
  for ``zope.security.untrustedpython.{builtins,interpreter,rcompile}``
  (the extra and the imports are to be removed in version 4.1).


4.0.0a1 (2013-02-14)
====================

- Add support for Python 3.2 and 3.3.

- Bring unit test coverage to 100%.

- ``zope.security.untrustedpython`` moved to separate project:
  ``zope.untrustedpython``

- Convert use of ``assert`` in non-test code to apprpriate error types:

  - Non-dict's passed to ``Checker.__init__``.

- Remove dprecattion of ``zope.security.adapter.TrustedAdapterFactory``.
  Although it has been marked as deprectaed since before Zope3 3.2, current
  versions of ``zope.compoent`` still rely on it.

- Convert doctests to Sphinx documentation in 'docs'.

- Add ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).

- Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
  ``nose`` and ``coverage``).

- Make non-doctest tests fully independent of ``zope.testing``.

  Two modules, ``zope.security.checker`` and ``zope.security.management``,
  register cleanups with ``zope.testing`` IFF it is importable, but the
  tests no longer rely on it.

- Enable building extensions without the ``svn:external`` of the ``zope.proxy``
  headers into our ``include`` dir.

- Bump ``zope.proxy`` dependency to ">= 4.1.0" to enable compilation
  on Py3k.

- Replace deprecated ``zope.component.adapts`` usage with equivalent
  ``zope.component.adapter`` decorator.

- Replace deprecated ``zope.interface.classProvides`` usage with equivalent
  ``zope.interface.provider`` decorator.

- Replace deprecated ``zope.interface.implements`` usage with equivalent
  ``zope.interface.implementer`` decorator.

- Drop support for Python 2.4 and 2.5.

- Add test convenience helper ``create_interaction`` and
  ``with interaction()``.

3.9.0 (2012-12-21)
==================

- Pin ``zope.proxy >= 4.1.0``

- Ship with an included ``proxy.h`` header which is compatible with the
  4.1.x version ov ``zope.proxy``.

3.8.5 (2012-12-21)
==================

- Ship with an included ``proxy.h`` header which is compatible with the
  supported versions of ``zope.proxy``.

3.8.4 (2012-12-20)
==================

- Pin ``zope.proxy >= 3.4.2, <4.1dev``

3.8.3 (2011-09-24)
==================

- Fix a regression introduced in 3.8.1: ``zope.location``\'s LocationProxy
  did not get a security checker if ``zope.security.decorator`` was not
  imported manually. Now ``zope.security.decorator`` is imported in
  ``zope.security.proxy`` without re-introducing the circular import fixed in
  3.8.1.

3.8.2 (2011-05-24)
==================

- Fix a test that failed on Python 2.7.


3.8.1 (2011-05-03)
==================

- Fix circular import beween ``zope.security.decorator`` and
  ``zope.security.proxy`` which led to an ``ImportError`` when only
  importing ``zope.security.decorator``.


3.8.0 (2010-12-14)
==================

- Add tests for our own ``configure.zcml``.

- Add ``zcml`` extra dependencies;  run related tests only if
  ``zope.configuration`` is available.

- Run tests related to the ``untrustedpython`` functionality only if
  ``RestrictedPython`` is available.


3.7.3 (2010-04-30)
==================

- Prefer the standard library's ``doctest`` module to the one from
  ``zope.testing``.

- Ensure ``PermissionIdsVocabulary`` directly provides ``IVocabularyFactory``,
  even though it might be unnecessary because ``IVocabularyFactory`` is
  provided in ZCML.

- Remove the dependency on the zope.exceptions package: zope.security.checker
  now imports ``DuplicationError`` from zope.exceptions if available, otherwise
  it defines a package-specific ``DuplicationError`` class which inherits from
  Exception.


3.7.2 (2009-11-10)
==================

- Add compatibility with Python 2.6 abstract base classes.


3.7.1 (2009-08-13)
==================

- Fix for LP bug 181833 (from Gustavo Niemeyer). Before "visiting" a
  sub-object, a check should be made to ensure the object is still valid.
  Because garbage collection may involve loops, if you garbage collect an
  object, it is possible that the actions done on this object may modify the
  state of other objects. This may cause another round of garbage collection,
  eventually generating a segfault (see LP bug). The Py_VISIT macro does the
  necessary checks, so it is used instead of the previous code.


3.7.0 (2009-05-13)
==================

- Make ``pytz`` a soft dependency:  the checker for ``pytz.UTC`` is
  created / tested only if the package is already present.  Run
  ``bin/test_pytz`` to run the tests with ``pytz`` on the path.


3.6.3 (2009-03-23)
==================

- Ensure that simple zope.schema's ``VocabularyRegistry`` is used for
  ``PermissionVocabulary`` tests, because it's replaced implicitly in
  environments with ``zope.app.schema`` installed that makes that tests
  fail.

- Fix a bug in ``DecoratedSecurityCheckerDescriptor`` which made
  security-wrapping location proxied exception instances throw
  exceptions on Python 2.5.
  See https://bugs.launchpad.net/zope3/+bug/251848


3.6.2 (2009-03-14)
==================

- Add ``zope.i18nmessageid.Message`` to non-proxied basic types. It's okay,
  because messages are immutable. Done previously by ``zope.app.security``.

- Add ``__name__`` and ``__parent__`` attributes to list of available by
  default.  Done previously by ``zope.app.security``.

- Move ``PermissionsVocabulary`` and ``PermissionIdsVocabulary`` vocabularies
  to the ``zope.security.permission`` module from the ``zope.app.security``
  package.

- Add zcml permission definitions for most common and useful permissions,
  like ``zope.View`` and ``zope.ManageContent``, as well as for the special
  ``zope.Public`` permission. They are placed in a separate
  ``permissions.zcml`` file, so it can be easily excluded/redefined. They are
  selected part of permissions moved from ``zope.app.security`` and used by
  many ``zope.*`` packages.

- Add ``addCheckerPublic`` helper function in ``zope.security.testing`` module
  that registers the "zope.Public" permission as an IPermission utility.

- Add security declarations for the ``zope.security.permisson.Permission``
  class.

- Improve test coverage.


3.6.1 (2009-03-10)
==================

- Use ``from`` imports instead of ``zope.deferred`` to avoid circular
  import problems, thus drop dependency on ``zope.deferredimport``.

- Raise ``NoInteraction`` when ``zope.security.checkPermission`` is called
  without interaction being active (LP #301565).

- Don't define security checkers for deprecated set types from the
  "sets" module on Python 2.6. It's discouraged to use them and
  ``set`` and ``frozenset`` built-in types should be used instead.

- Change package's mailng list address to zope-dev at zope.org as
  zope3-dev at zope.org is now retired.

- Remove old zpkg-related files.


3.6.0 (2009-01-31)
==================

- Install decorated security checker support on ``LocationProxy`` from the
  outside.

- Add support to bootstrap on Jython.

- Move the ``protectclass`` module from ``zope.app.security`` to this
  package to reduce the number of dependencies on ``zope.app.security``.

- Move the ``<module>`` directive implementation from ``zope.app.security``
  to this package.

- Move the ``<class>`` directive implementation from ``zope.app.component``
  to this package.


3.5.2 (2008-07-27)
==================

- Make C code compatible with Python 2.5 on 64bit architectures.


3.5.1 (2008-06-04)
==================

- Add ``frozenset``, ``set``, ``reversed``, and ``sorted`` to the list of
  safe builtins.


3.5.0 (2008-03-05)
==================

- Changed title for ``zope.security.management.system_user`` to be more
  presentable.


3.4.3 - (2009/11/26)
====================

- Backport a fix made by Gary Poster to the 3.4 branch:
  Fix for LP bug 181833 (from Gustavo Niemeyer). Before "visiting" a
  sub-object, a check should be made to ensure the object is still valid.
  Because garbage collection may involve loops, if you garbage collect an
  object, it is possible that the actions done on this object may modify the
  state of other objects. This may cause another round of garbage collection,
  eventually generating a segfault (see LP bug). The ``Py_VISIT`` macro does
  the necessary checks, so it is used instead of the previous code.


3.4.2 - (2009/03/23)
====================

- Add dependency on ``zope.thread`` to setup.py; without it, the tests were
  failing.

- Backport a fix made by Albertas Agejevas to the 3.4 branch. He
  fixed a bug in DecoratedSecurityCheckerDescriptor which made
  security-wrapping location proxied exception instances throw
  exceptions on Python 2.5.  See
  https://bugs.launchpad.net/zope3/+bug/251848


3.4.1 - 2008/07/27
==================

- Make C code compatible with Python 2.5 on 64bit architectures.


3.4.0 (2007-10-02)
==================

- Update meta-data.


3.4.0b5 (2007-08-15)
====================

- Fix a circular import in the C implementation.


3.4.0b4 (2007-08-14)
====================

- Improve ugly/brittle ID of ``zope.security.management.system_user``.


3.4.0b3 (2007-08-14)
====================

- Add support for Python 2.5.

- Bug: ``zope.security.management.system_user`` wasn't a valid principal
  (didn't provide IPrincipal).

- Bug: Fix inclusion of doctest to use the doctest module from
  ``zope.testing``. Now tests can be run multiple times without
  breaking. (#98250)


3.4.0b2 (2007-06-15)
====================

- Bug: Remove stack extraction in ``newInteraction``. When using eggs this is
  an extremly expensive function. The publisher is now more than 10 times
  faster when using eggs and about twice as fast with a zope trunk checkout.


3.4.0b1
=======

- Temporarily fixed the hidden (and accidental) dependency on zope.testing to
  become optional.

Note: The releases between 3.2.0 and 3.4.0b1 where not tracked as an
individual package and have been documented in the Zope 3 changelog.


3.2.0 (2006-01-05)
==================

- Corresponds to the verison of the ``zope.security`` package shipped as part
  of the Zope 3.2.0 release.

- Remove deprecated helper functions, ``proxy.trustedRemoveSecurityProxy``
  and ``proxy.getProxiedObject``.

- Make handling of ``management.{end,restore}Interaction`` more careful w.r.t.
  edge cases.

- Make behavior of ``canWrite`` consistent with ``canAccess``:
  if ``canAccess`` does not raise ``ForbiddenAttribute``, then neither will
  ``canWrite``.  See: http://www.zope.org/Collectors/Zope3-dev/506

- Code style / documentation / test fixes.


3.1.0 (2005-10-03)
==================

- Add support for use of the new Python 2.4 datatypes, ``set`` and
  ``frozenset``, within checked code.

- Make the C security proxy depend on the ``proxy.h`` header from the
  ``zope.proxy`` package.

- XXX: the spelling of the ``#include`` is bizarre!  It seems to be related to
  ``zpkg``-based builds, and should likely be revisited.  For the moment, I have
  linked in the ``zope.proxy`` package into our own ``include`` directory.  See
  the subversion checkin: http://svn.zope.org/Zope3/?rev=37882&view=rev

- Update checker to avoid re-proxying objects which have and explicit
  ``__Security_checker__`` assigned.

- Corresponds to the verison of the ``zope.security`` package shipped as part of
  the Zope 3.1.0 release.

- Clarify contract of ``IChecker`` to indicate that its ``check*`` methods may
  raise only ``Forbidden`` or ``Unauthorized`` exceptions.

- Add interfaces, (``IPrincipal``, ``IGroupAwarePrincipal``, ``IGroup``, and
  ``IPermission``) specifying contracts of components in the security framework.

- Code style / documentation / test fixes.


3.0.0 (2004-11-07)
==================

- Corresponds to the version of the ``zope.security`` package shipped as part
  of the Zope X3.0.0 release.

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/zopefoundation/zope.security",
    "name": "zope.security",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "zope security policy principal permission",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/b5/c9/8f4d997d11047d10709f6352d48b7dfc82d4f39352523d9e80fd13a77981/zope.security-6.1.tar.gz",
    "platform": null,
    "description": "===================\n ``zope.security``\n===================\n\n.. image:: https://github.com/zopefoundation/zope.security/actions/workflows/tests.yml/badge.svg\n        :target: https://github.com/zopefoundation/zope.security/actions/workflows/tests.yml\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/zopefoundation/zope.security?branch=master&svg=true\n        :target: https://ci.appveyor.com/project/mgedmin/zope-security\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.security/badge.svg?branch=master\n        :target: https://coveralls.io/github/zopefoundation/zope.security?branch=master\n\n.. image:: https://readthedocs.org/projects/zopesecurity/badge/?version=latest\n        :target: https://zopesecurity.readthedocs.io/en/latest/\n        :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/zope.security.svg\n        :target: https://pypi.python.org/pypi/zope.security/\n        :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.security.svg\n        :target: https://pypi.org/project/zope.security/\n        :alt: Supported Python versions\n\n\nThe Security framework provides a generic mechanism to implement security\npolicies on Python objects.\n\nDocumentation is available at https://zopesecurity.readthedocs.io/\n\n\n=========\n Changes\n=========\n\n6.1 (2023-01-18)\n================\n\n- Remove more proxying code for names that no longer exist in Python 3.\n  (`#92 <https://github.com/zopefoundation/zope.security/issues/92>`_)\n\n\n6.0 (2023-01-16)\n================\n\n- Remove proxying code for names that no longer exist in Python 3.\n  (`#92 <https://github.com/zopefoundation/zope.security/issues/92>`_)\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n5.8 (2022-11-30)\n================\n\n- The extra ``untrustedpython`` now for Python 3, too, installs\n  ``zope.untrustedpython``.\n\n\n5.7 (2022-11-17)\n================\n\n- Release to rebuild full set of binary wheels.\n\n\n5.6 (2022-11-16)\n================\n\n- Add support for building arm64 wheels on macOS.\n\n\n5.5 (2022-11-06)\n================\n\n- Add support for final release of Python 3.11.\n\n\n5.4 (2022-09-15)\n================\n\n- Disable unsafe math optimizations in C code.  See `pull request 89\n  <https://github.com/zopefoundation/zope.security/pull/89>`_.\n\n\n5.3 (2022-04-27)\n================\n\n- Allow calling bound methods of some built-in objects such as ``().__repr__``\n  and ``{}.__repr__`` by default. This worked on Python 2, but raised\n  ``ForbiddenAttribute`` on Python 3. See `issue 75\n  <https://github.com/zopefoundation/zope.security/issues/75>`_.\n\n- Remove usage of ``unittest.makeSuite`` as it is deprecated in Python 3.11+.\n  See `issue 83\n  <https://github.com/zopefoundation/zope.security/issues/83>`_.\n\n- Add support for Python 3.11 (as of 3.11.0a7).\n\n\n5.2 (2022-03-10)\n================\n\n- Add support for Python 3.9 and 3.10.\n\n\n5.1.1 (2020-03-23)\n==================\n\n- Ensure all objects have consistent interface resolution orders (if\n  all dependencies are up-to-date). See `issue 71\n  <https://github.com/zopefoundation/zope.security/issues/71>`_.\n\n\n5.1.0 (2020-02-14)\n==================\n\n- Let proxied interfaces be iterated on Python 3. This worked on\n  Python 2, but raised ``ForbiddenAttribute`` an Python 3. See\n  `zope.interface issue 141 <https://github.com/zopefoundation/zope.interface/issues/141>`_.\n\n- Allow to use a common Sphinx version for Python 2 and 3.\n\n\n5.0.0 (2019-11-11)\n==================\n\n- Drop support for Python 3.4.\n\n- Add support for Python 3.8.\n\n- Properly declare dependency on zope.schema >= 4.2.0, introduced in\n  zope.security 4.2.1.\n\n- Fix dict item view iteration on PyPy3 7.x.\n\n\n4.3.1 (2019-01-03)\n==================\n\n- Fix the decimal.Decimal checker, ``__truediv__`` was missing causing\n  ``ForbiddenAttribute`` on a ``ProxyFactory(Decimal('1')) / 1`` operation\n\n\n4.3.0 (2018-08-24)\n==================\n\n- Add the interface ``ISystemPrincipal`` and make\n  ``zope.security.management.system_user`` a regular object that\n  implements this interface. This facilitates providing adapter\n  registrations specifically for the ``system_user``.\n\n\n4.2.3 (2018-08-09)\n==================\n\n- Add support for Python 3.7.\n\n\n4.2.2 (2018-01-11)\n==================\n\n- Make the pure-Python proxy on Python 2 *not* check permissions for\n  ``__unicode__`` just like the C implementation. Note that\n  ``__str__`` is checked for both implementations on both Python 2 and\n  3, but if there is no ``__unicode__`` method defined, Python 2's\n  automatic fallback to ``__str__`` is **not** checked when\n  ``unicode`` is called. See `issue 10\n  <https://github.com/zopefoundation/zope.security/issues/10>`_.\n\n\n4.2.1 (2017-11-30)\n==================\n\n- Fix the default values for ``Permission`` fields ``title`` and\n  ``description`` under Python 2. See `issue 48\n  <https://github.com/zopefoundation/zope.security/issues/48>`_.\n\n- Change the ``IPermission.id`` from ``Text`` (unicode) to a\n  ``NativeStringLine``. This matches what ZCML creates and what is\n  usually written in source code.\n\n\n4.2.0 (2017-09-20)\n==================\n\n- Fix the extremely rare potential for a crash when the C extensions\n  are in use. See `issue 35 <https://github.com/zopefoundation/zope.security/issues/35>`_.\n\n- Fix `issue 7\n  <https://github.com/zopefoundation/zope.security/issues/7>`_: The\n  pure-Python proxy didn't propagate ``TypeError`` from ``__repr__``\n  and ``__str__`` like the C implementation did.\n\n- Fix `issue 27 <https://github.com/zopefoundation/zope.security/issues/27>`_:\n  iteration of ``zope.interface.providedBy()`` is now allowed by\n  default on all versions of Python. Previously it only worked on\n  Python 2. Note that ``providedBy`` returns unproxied objects for backwards\n  compatibility.\n\n- Fix ``__length_hint__`` of proxied iterator objects. Previously it\n  was ignored.\n\n- Drop support for Python 3.3.\n\n- Enable coveralls.io for coverage measurement and run doctests on all\n  supported Python versions.\n\n- Fix `issue 9\n  <https://github.com/zopefoundation/zope.security/issues/9>`_:\n  iteration of ``itertools.groupby`` objects is now allowed by\n  default. In addition, iteration of all the custom iterator types\n  defined in itertools are also allowed by default.\n\n- Simplify the internal ``_compat.py`` module now that we only run on\n  newer Python versions. See `PR 32 <https://github.com/zopefoundation/zope.security/pull/32>`_.\n\n- Respect ``PURE_PYTHON`` at runtime. At build time, always try to\n  build the C extensions on supported platforms, ignoring\n  ``PURE_PYTHON``. See `issue 33\n  <https://github.com/zopefoundation/zope.security/issues/33>`_.\n\n- Fix watching checkers (``ZOPE_WATCH_CHECKERS=1``) in pure-Python\n  mode. See `issue 8 <https://github.com/zopefoundation/zope.security/issues/8>`_.\n\n- Remove unused internal files from ``tests/``.\n\n- Remove ``zope.security.setup``. It was unused and did not work\n  anyway.\n\n- Fix the pure-Python proxy on Python 2 letting ``__getslice__`` and\n  ``__setslice__`` fall through to ``__getitem__`` or ``__setitem__``,\n  respectively, if it raised an error.\n\n- Fix the pure-Python proxy calling a wrapped ``__getattr__`` or\n  ``__getattribute__`` more than once in situations where the C\n  implementation only called it one time (when it raised an\n  AttributeError).\n\n- Reach 100% test coverage and maintain it via automated checks.\n\n4.1.1 (2017-05-17)\n==================\n\n- Fix `issue 23 <https://github.com/zopefoundation/zope.security/issues/23>`_:\n  iteration of ``collections.OrderedDict`` and its various views is\n  now allowed by default on all versions of Python.\n\n- As a further fix for issue 20, iteration of ``BTree`` itself is now\n  allowed by default.\n\n4.1.0 (2017-04-24)\n==================\n\n- When testing ``PURE_PYTHON`` environments under ``tox``, avoid poisoning\n  the user's global wheel cache.\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add support for Python 3.5 and 3.6.\n\n- Fix `issue 20 <https://github.com/zopefoundation/zope.security/issues/20>`_:\n  iteration of pure-Python ``BTrees.items()``, and also creating a list from\n  ``BTrees.items()`` on Python 3. The same applies for ``keys()`` and ``values()``.\n\n4.0.3 (2015-06-02)\n==================\n\n- Fix iteration over security proxies in Python 3 using the pure-Python\n  implementation.\n\n4.0.2 (2015-06-02)\n==================\n\n- Fix compatibility with ``zope.proxy`` 4.1.5 under PyPy.\n\n- Fix the very first call to ``removeSecurityProxy`` returning\n  incorrect results if given a proxy under PyPy.\n\n4.0.1 (2014-03-19)\n==================\n\n- Add support for Python 3.4.\n\n4.0.0 (2013-07-09)\n==================\n\n- Update ``boostrap.py`` to version 2.2.\n\n- Bugfix: ZOPE_WATCH_CHECKERS=2 used to incorrectly suppress\n  unauthorized/forbidden warnings.\n\n- Bugfix: ZOPE_WATCH_CHECKERS=1 used to miss most of the checks.\n\n\n4.0.0b1 (2013-03-11)\n====================\n\n- Add support for PyPy.\n\n- Fix extension compilation on windows python 3.x\n\n\n4.0.0a5 (2013-02-28)\n====================\n\n- Undo changes from 4.0.0a4. Instead, ``zope.untrustedpython`` is only\n  included during Python 2 installs.\n\n\n4.0.0a4 (2013-02-28)\n====================\n\n- Remove ``untrustedpython`` extra again, since we do not want to support\n  ``zope.untrustedpython`` in ZTK 2.0. If BBB is really needed, we will create\n  a 3.10.0 release.\n\n4.0.0a3 (2013-02-15)\n====================\n\n- Fix test breakage in 4.0.0a2 due to deprecation strategy.\n\n4.0.0a2 (2013-02-15)\n====================\n\n- Add back the ``untrustedpython`` extra:  now pulls in\n  ``zope.untrustedpython``.  Restored deprecated backward-compatible imports\n  for ``zope.security.untrustedpython.{builtins,interpreter,rcompile}``\n  (the extra and the imports are to be removed in version 4.1).\n\n\n4.0.0a1 (2013-02-14)\n====================\n\n- Add support for Python 3.2 and 3.3.\n\n- Bring unit test coverage to 100%.\n\n- ``zope.security.untrustedpython`` moved to separate project:\n  ``zope.untrustedpython``\n\n- Convert use of ``assert`` in non-test code to apprpriate error types:\n\n  - Non-dict's passed to ``Checker.__init__``.\n\n- Remove dprecattion of ``zope.security.adapter.TrustedAdapterFactory``.\n  Although it has been marked as deprectaed since before Zope3 3.2, current\n  versions of ``zope.compoent`` still rely on it.\n\n- Convert doctests to Sphinx documentation in 'docs'.\n\n- Add ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).\n\n- Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs\n  ``nose`` and ``coverage``).\n\n- Make non-doctest tests fully independent of ``zope.testing``.\n\n  Two modules, ``zope.security.checker`` and ``zope.security.management``,\n  register cleanups with ``zope.testing`` IFF it is importable, but the\n  tests no longer rely on it.\n\n- Enable building extensions without the ``svn:external`` of the ``zope.proxy``\n  headers into our ``include`` dir.\n\n- Bump ``zope.proxy`` dependency to \">= 4.1.0\" to enable compilation\n  on Py3k.\n\n- Replace deprecated ``zope.component.adapts`` usage with equivalent\n  ``zope.component.adapter`` decorator.\n\n- Replace deprecated ``zope.interface.classProvides`` usage with equivalent\n  ``zope.interface.provider`` decorator.\n\n- Replace deprecated ``zope.interface.implements`` usage with equivalent\n  ``zope.interface.implementer`` decorator.\n\n- Drop support for Python 2.4 and 2.5.\n\n- Add test convenience helper ``create_interaction`` and\n  ``with interaction()``.\n\n3.9.0 (2012-12-21)\n==================\n\n- Pin ``zope.proxy >= 4.1.0``\n\n- Ship with an included ``proxy.h`` header which is compatible with the\n  4.1.x version ov ``zope.proxy``.\n\n3.8.5 (2012-12-21)\n==================\n\n- Ship with an included ``proxy.h`` header which is compatible with the\n  supported versions of ``zope.proxy``.\n\n3.8.4 (2012-12-20)\n==================\n\n- Pin ``zope.proxy >= 3.4.2, <4.1dev``\n\n3.8.3 (2011-09-24)\n==================\n\n- Fix a regression introduced in 3.8.1: ``zope.location``\\'s LocationProxy\n  did not get a security checker if ``zope.security.decorator`` was not\n  imported manually. Now ``zope.security.decorator`` is imported in\n  ``zope.security.proxy`` without re-introducing the circular import fixed in\n  3.8.1.\n\n3.8.2 (2011-05-24)\n==================\n\n- Fix a test that failed on Python 2.7.\n\n\n3.8.1 (2011-05-03)\n==================\n\n- Fix circular import beween ``zope.security.decorator`` and\n  ``zope.security.proxy`` which led to an ``ImportError`` when only\n  importing ``zope.security.decorator``.\n\n\n3.8.0 (2010-12-14)\n==================\n\n- Add tests for our own ``configure.zcml``.\n\n- Add ``zcml`` extra dependencies;  run related tests only if\n  ``zope.configuration`` is available.\n\n- Run tests related to the ``untrustedpython`` functionality only if\n  ``RestrictedPython`` is available.\n\n\n3.7.3 (2010-04-30)\n==================\n\n- Prefer the standard library's ``doctest`` module to the one from\n  ``zope.testing``.\n\n- Ensure ``PermissionIdsVocabulary`` directly provides ``IVocabularyFactory``,\n  even though it might be unnecessary because ``IVocabularyFactory`` is\n  provided in ZCML.\n\n- Remove the dependency on the zope.exceptions package: zope.security.checker\n  now imports ``DuplicationError`` from zope.exceptions if available, otherwise\n  it defines a package-specific ``DuplicationError`` class which inherits from\n  Exception.\n\n\n3.7.2 (2009-11-10)\n==================\n\n- Add compatibility with Python 2.6 abstract base classes.\n\n\n3.7.1 (2009-08-13)\n==================\n\n- Fix for LP bug 181833 (from Gustavo Niemeyer). Before \"visiting\" a\n  sub-object, a check should be made to ensure the object is still valid.\n  Because garbage collection may involve loops, if you garbage collect an\n  object, it is possible that the actions done on this object may modify the\n  state of other objects. This may cause another round of garbage collection,\n  eventually generating a segfault (see LP bug). The Py_VISIT macro does the\n  necessary checks, so it is used instead of the previous code.\n\n\n3.7.0 (2009-05-13)\n==================\n\n- Make ``pytz`` a soft dependency:  the checker for ``pytz.UTC`` is\n  created / tested only if the package is already present.  Run\n  ``bin/test_pytz`` to run the tests with ``pytz`` on the path.\n\n\n3.6.3 (2009-03-23)\n==================\n\n- Ensure that simple zope.schema's ``VocabularyRegistry`` is used for\n  ``PermissionVocabulary`` tests, because it's replaced implicitly in\n  environments with ``zope.app.schema`` installed that makes that tests\n  fail.\n\n- Fix a bug in ``DecoratedSecurityCheckerDescriptor`` which made\n  security-wrapping location proxied exception instances throw\n  exceptions on Python 2.5.\n  See https://bugs.launchpad.net/zope3/+bug/251848\n\n\n3.6.2 (2009-03-14)\n==================\n\n- Add ``zope.i18nmessageid.Message`` to non-proxied basic types. It's okay,\n  because messages are immutable. Done previously by ``zope.app.security``.\n\n- Add ``__name__`` and ``__parent__`` attributes to list of available by\n  default.  Done previously by ``zope.app.security``.\n\n- Move ``PermissionsVocabulary`` and ``PermissionIdsVocabulary`` vocabularies\n  to the ``zope.security.permission`` module from the ``zope.app.security``\n  package.\n\n- Add zcml permission definitions for most common and useful permissions,\n  like ``zope.View`` and ``zope.ManageContent``, as well as for the special\n  ``zope.Public`` permission. They are placed in a separate\n  ``permissions.zcml`` file, so it can be easily excluded/redefined. They are\n  selected part of permissions moved from ``zope.app.security`` and used by\n  many ``zope.*`` packages.\n\n- Add ``addCheckerPublic`` helper function in ``zope.security.testing`` module\n  that registers the \"zope.Public\" permission as an IPermission utility.\n\n- Add security declarations for the ``zope.security.permisson.Permission``\n  class.\n\n- Improve test coverage.\n\n\n3.6.1 (2009-03-10)\n==================\n\n- Use ``from`` imports instead of ``zope.deferred`` to avoid circular\n  import problems, thus drop dependency on ``zope.deferredimport``.\n\n- Raise ``NoInteraction`` when ``zope.security.checkPermission`` is called\n  without interaction being active (LP #301565).\n\n- Don't define security checkers for deprecated set types from the\n  \"sets\" module on Python 2.6. It's discouraged to use them and\n  ``set`` and ``frozenset`` built-in types should be used instead.\n\n- Change package's mailng list address to zope-dev at zope.org as\n  zope3-dev at zope.org is now retired.\n\n- Remove old zpkg-related files.\n\n\n3.6.0 (2009-01-31)\n==================\n\n- Install decorated security checker support on ``LocationProxy`` from the\n  outside.\n\n- Add support to bootstrap on Jython.\n\n- Move the ``protectclass`` module from ``zope.app.security`` to this\n  package to reduce the number of dependencies on ``zope.app.security``.\n\n- Move the ``<module>`` directive implementation from ``zope.app.security``\n  to this package.\n\n- Move the ``<class>`` directive implementation from ``zope.app.component``\n  to this package.\n\n\n3.5.2 (2008-07-27)\n==================\n\n- Make C code compatible with Python 2.5 on 64bit architectures.\n\n\n3.5.1 (2008-06-04)\n==================\n\n- Add ``frozenset``, ``set``, ``reversed``, and ``sorted`` to the list of\n  safe builtins.\n\n\n3.5.0 (2008-03-05)\n==================\n\n- Changed title for ``zope.security.management.system_user`` to be more\n  presentable.\n\n\n3.4.3 - (2009/11/26)\n====================\n\n- Backport a fix made by Gary Poster to the 3.4 branch:\n  Fix for LP bug 181833 (from Gustavo Niemeyer). Before \"visiting\" a\n  sub-object, a check should be made to ensure the object is still valid.\n  Because garbage collection may involve loops, if you garbage collect an\n  object, it is possible that the actions done on this object may modify the\n  state of other objects. This may cause another round of garbage collection,\n  eventually generating a segfault (see LP bug). The ``Py_VISIT`` macro does\n  the necessary checks, so it is used instead of the previous code.\n\n\n3.4.2 - (2009/03/23)\n====================\n\n- Add dependency on ``zope.thread`` to setup.py; without it, the tests were\n  failing.\n\n- Backport a fix made by Albertas Agejevas to the 3.4 branch. He\n  fixed a bug in DecoratedSecurityCheckerDescriptor which made\n  security-wrapping location proxied exception instances throw\n  exceptions on Python 2.5.  See\n  https://bugs.launchpad.net/zope3/+bug/251848\n\n\n3.4.1 - 2008/07/27\n==================\n\n- Make C code compatible with Python 2.5 on 64bit architectures.\n\n\n3.4.0 (2007-10-02)\n==================\n\n- Update meta-data.\n\n\n3.4.0b5 (2007-08-15)\n====================\n\n- Fix a circular import in the C implementation.\n\n\n3.4.0b4 (2007-08-14)\n====================\n\n- Improve ugly/brittle ID of ``zope.security.management.system_user``.\n\n\n3.4.0b3 (2007-08-14)\n====================\n\n- Add support for Python 2.5.\n\n- Bug: ``zope.security.management.system_user`` wasn't a valid principal\n  (didn't provide IPrincipal).\n\n- Bug: Fix inclusion of doctest to use the doctest module from\n  ``zope.testing``. Now tests can be run multiple times without\n  breaking. (#98250)\n\n\n3.4.0b2 (2007-06-15)\n====================\n\n- Bug: Remove stack extraction in ``newInteraction``. When using eggs this is\n  an extremly expensive function. The publisher is now more than 10 times\n  faster when using eggs and about twice as fast with a zope trunk checkout.\n\n\n3.4.0b1\n=======\n\n- Temporarily fixed the hidden (and accidental) dependency on zope.testing to\n  become optional.\n\nNote: The releases between 3.2.0 and 3.4.0b1 where not tracked as an\nindividual package and have been documented in the Zope 3 changelog.\n\n\n3.2.0 (2006-01-05)\n==================\n\n- Corresponds to the verison of the ``zope.security`` package shipped as part\n  of the Zope 3.2.0 release.\n\n- Remove deprecated helper functions, ``proxy.trustedRemoveSecurityProxy``\n  and ``proxy.getProxiedObject``.\n\n- Make handling of ``management.{end,restore}Interaction`` more careful w.r.t.\n  edge cases.\n\n- Make behavior of ``canWrite`` consistent with ``canAccess``:\n  if ``canAccess`` does not raise ``ForbiddenAttribute``, then neither will\n  ``canWrite``.  See: http://www.zope.org/Collectors/Zope3-dev/506\n\n- Code style / documentation / test fixes.\n\n\n3.1.0 (2005-10-03)\n==================\n\n- Add support for use of the new Python 2.4 datatypes, ``set`` and\n  ``frozenset``, within checked code.\n\n- Make the C security proxy depend on the ``proxy.h`` header from the\n  ``zope.proxy`` package.\n\n- XXX: the spelling of the ``#include`` is bizarre!  It seems to be related to\n  ``zpkg``-based builds, and should likely be revisited.  For the moment, I have\n  linked in the ``zope.proxy`` package into our own ``include`` directory.  See\n  the subversion checkin: http://svn.zope.org/Zope3/?rev=37882&view=rev\n\n- Update checker to avoid re-proxying objects which have and explicit\n  ``__Security_checker__`` assigned.\n\n- Corresponds to the verison of the ``zope.security`` package shipped as part of\n  the Zope 3.1.0 release.\n\n- Clarify contract of ``IChecker`` to indicate that its ``check*`` methods may\n  raise only ``Forbidden`` or ``Unauthorized`` exceptions.\n\n- Add interfaces, (``IPrincipal``, ``IGroupAwarePrincipal``, ``IGroup``, and\n  ``IPermission``) specifying contracts of components in the security framework.\n\n- Code style / documentation / test fixes.\n\n\n3.0.0 (2004-11-07)\n==================\n\n- Corresponds to the version of the ``zope.security`` package shipped as part\n  of the Zope X3.0.0 release.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Zope Security Framework",
    "version": "6.1",
    "project_urls": {
        "Documentation": "https://zopesecurity.readthedocs.io",
        "Homepage": "http://github.com/zopefoundation/zope.security",
        "Issue Tracker": "https://github.com/zopefoundation/zope.security/issues",
        "Sources": "https://github.com/zopefoundation/zope.security"
    },
    "split_keywords": [
        "zope",
        "security",
        "policy",
        "principal",
        "permission"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d3c0e08dde04b8a6899e9f9fbbe2732196c6312334e0b23583319effda8d2e3",
                "md5": "587e7534b949ecf50299c64e0224dfa9",
                "sha256": "ba865ed1912320a87f682b99b80df0f84808fa4278f4d63e1370f8d81bd895da"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "587e7534b949ecf50299c64e0224dfa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 124230,
            "upload_time": "2023-01-18T07:46:18",
            "upload_time_iso_8601": "2023-01-18T07:46:18.559706Z",
            "url": "https://files.pythonhosted.org/packages/4d/3c/0e08dde04b8a6899e9f9fbbe2732196c6312334e0b23583319effda8d2e3/zope.security-6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e0ad67daaac3fcd52578813a759523883242bfed1ee608bfe62393e06e6a5dc",
                "md5": "e87c8cd2064fd8d84bd043ae8862aefd",
                "sha256": "75a0bd90334a63a7c4732cd50a59c11186c6f6064b75f3c7fdb1d58aa5ef90a5"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e87c8cd2064fd8d84bd043ae8862aefd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 124226,
            "upload_time": "2023-01-18T07:46:20",
            "upload_time_iso_8601": "2023-01-18T07:46:20.330826Z",
            "url": "https://files.pythonhosted.org/packages/4e/0a/d67daaac3fcd52578813a759523883242bfed1ee608bfe62393e06e6a5dc/zope.security-6.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e26e72a83669f8d7e44996ece7b2c40114fa149c59c19f0ed4bbbf1031f08b5e",
                "md5": "3a3bbe2dc864fe06dc7dcaa87f91aba8",
                "sha256": "9d982c5c9216f3c42a9ec2a474adf75d7d1efcdf52bbae00e096cc1b2e0a2628"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a3bbe2dc864fe06dc7dcaa87f91aba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 181665,
            "upload_time": "2023-01-18T08:08:54",
            "upload_time_iso_8601": "2023-01-18T08:08:54.166824Z",
            "url": "https://files.pythonhosted.org/packages/e2/6e/72a83669f8d7e44996ece7b2c40114fa149c59c19f0ed4bbbf1031f08b5e/zope.security-6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cf1dbb08bcfde3d52a7115d2034181300e7faf1684b334fd3e55faefedf3544",
                "md5": "7323b825732ebeb1d20dbfaba6d97df5",
                "sha256": "c3d9508f6be85d9da6ffbfdcc73b414696367391d3de60f887092ba344ff74eb"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7323b825732ebeb1d20dbfaba6d97df5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 174521,
            "upload_time": "2023-01-18T07:47:33",
            "upload_time_iso_8601": "2023-01-18T07:47:33.149787Z",
            "url": "https://files.pythonhosted.org/packages/2c/f1/dbb08bcfde3d52a7115d2034181300e7faf1684b334fd3e55faefedf3544/zope.security-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": "75fac8dea5225274288b6bae9758c899411ae82e6537924ddf84a96dbfe01f72",
                "md5": "3aad3414dcd3a59399df9e217dba9e5a",
                "sha256": "e88230ee9bca889b6462ea05dc93877dc1f6769a37313ee3fbf65779e8342309"
            },
            "downloads": -1,
            "filename": "zope.security-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": "3aad3414dcd3a59399df9e217dba9e5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 181372,
            "upload_time": "2023-01-18T07:48:41",
            "upload_time_iso_8601": "2023-01-18T07:48:41.777651Z",
            "url": "https://files.pythonhosted.org/packages/75/fa/c8dea5225274288b6bae9758c899411ae82e6537924ddf84a96dbfe01f72/zope.security-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": "fd23fabff4d507ab851822413ffa4c149768e8e5fd9fc8401d0c323682410068",
                "md5": "f378fee69f71c28502e8692ed955d3b4",
                "sha256": "02520c7e2ac5d306e1d35c25da1337100babcc33213dc3cae3356290f7929c3b"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f378fee69f71c28502e8692ed955d3b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 126130,
            "upload_time": "2023-01-18T07:50:56",
            "upload_time_iso_8601": "2023-01-18T07:50:56.845983Z",
            "url": "https://files.pythonhosted.org/packages/fd/23/fabff4d507ab851822413ffa4c149768e8e5fd9fc8401d0c323682410068/zope.security-6.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4886e09fdfc9c2f8a6f885d7a8f814b39754a9726b2ef6466b96175ca0890267",
                "md5": "5d265ae46d82d3bb691dae2be7f7d8b1",
                "sha256": "31c0ceed886e90f9fadd4ec890303fdcf8a948c2d84382420f38639c02913933"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d265ae46d82d3bb691dae2be7f7d8b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 124289,
            "upload_time": "2023-01-18T07:46:12",
            "upload_time_iso_8601": "2023-01-18T07:46:12.959001Z",
            "url": "https://files.pythonhosted.org/packages/48/86/e09fdfc9c2f8a6f885d7a8f814b39754a9726b2ef6466b96175ca0890267/zope.security-6.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1344e799f03d4a6596df5a51241b5028b22ca2f0b04469d349eb77c13201655a",
                "md5": "30abf7681422332685ff913ddd0d77e0",
                "sha256": "bde7ecdae173aec33159a216c28d4f9a0b167363b0b90ef85a7cd8a36cb68edc"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "30abf7681422332685ff913ddd0d77e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 124223,
            "upload_time": "2023-01-18T07:46:15",
            "upload_time_iso_8601": "2023-01-18T07:46:15.206901Z",
            "url": "https://files.pythonhosted.org/packages/13/44/e799f03d4a6596df5a51241b5028b22ca2f0b04469d349eb77c13201655a/zope.security-6.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b9d8ab6ce4cee0e190054159df87785ec9b15eb1822bb32342861e7021fc58a",
                "md5": "446572a41dd66653047a2fe85ac9bd5b",
                "sha256": "64aab6a130fd879ebe6e2e59988ffda814cbe9ad95c8ac5311178f87449ebac3"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "446572a41dd66653047a2fe85ac9bd5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 183044,
            "upload_time": "2023-01-18T08:08:56",
            "upload_time_iso_8601": "2023-01-18T08:08:56.876705Z",
            "url": "https://files.pythonhosted.org/packages/3b/9d/8ab6ce4cee0e190054159df87785ec9b15eb1822bb32342861e7021fc58a/zope.security-6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76f156e02899607ef5c6ad1fb9925350f671c56bbdfc1c613ef87b02ce9b03a0",
                "md5": "ab594029e7592dbd305b0379309c7d95",
                "sha256": "0378e3c3b2bd95998a6c37934afe31bd46988de0809a9ec97d43c17f1186038f"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ab594029e7592dbd305b0379309c7d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 175877,
            "upload_time": "2023-01-18T07:47:35",
            "upload_time_iso_8601": "2023-01-18T07:47:35.132169Z",
            "url": "https://files.pythonhosted.org/packages/76/f1/56e02899607ef5c6ad1fb9925350f671c56bbdfc1c613ef87b02ce9b03a0/zope.security-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": "d350116c96cc77954df0e6e92c68b141b6ccf230f4167eaa796d70e29faaea39",
                "md5": "cfbe092f6b0a5e6671df483d780ee6d1",
                "sha256": "9c923284cf233090b40b77afc1325c79ebc6d36bcb635e2c133515ad9805a675"
            },
            "downloads": -1,
            "filename": "zope.security-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": "cfbe092f6b0a5e6671df483d780ee6d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 182613,
            "upload_time": "2023-01-18T07:48:44",
            "upload_time_iso_8601": "2023-01-18T07:48:44.074563Z",
            "url": "https://files.pythonhosted.org/packages/d3/50/116c96cc77954df0e6e92c68b141b6ccf230f4167eaa796d70e29faaea39/zope.security-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": "a2caef165ee76b7f5b7f44241275d652d0466ac3157ace8d1abe83f7483ec882",
                "md5": "f43422d9a0b3e19bca84f468dce5d42f",
                "sha256": "77288094ae317a9cbf0a774c833fab8df491341a168a726d2fe4a7172b8a560e"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f43422d9a0b3e19bca84f468dce5d42f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 126135,
            "upload_time": "2023-01-18T07:52:39",
            "upload_time_iso_8601": "2023-01-18T07:52:39.205487Z",
            "url": "https://files.pythonhosted.org/packages/a2/ca/ef165ee76b7f5b7f44241275d652d0466ac3157ace8d1abe83f7483ec882/zope.security-6.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef2d7cb1d872d2db0e33fa78be575b29b24413c2372e95d0281b7df52b51355e",
                "md5": "d964ba5e1d18b4402434d5ae0c287579",
                "sha256": "a236a4ea2c0160ca2ff0865b97f424ee7f68f198be2af87fb894a53157c3eee5"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d964ba5e1d18b4402434d5ae0c287579",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 124056,
            "upload_time": "2023-01-18T07:46:13",
            "upload_time_iso_8601": "2023-01-18T07:46:13.969248Z",
            "url": "https://files.pythonhosted.org/packages/ef/2d/7cb1d872d2db0e33fa78be575b29b24413c2372e95d0281b7df52b51355e/zope.security-6.1-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6251759f715c0d5c303d1cced256cd86f2a938e5a9b8046acabec6514673c110",
                "md5": "3bf3c423ec4960e236fcaac434fe9d87",
                "sha256": "2dad84b4f8be966455a9c4f78354415357f0646a0f62d337d17e1997901a4ec2"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3bf3c423ec4960e236fcaac434fe9d87",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 175417,
            "upload_time": "2023-01-18T08:09:00",
            "upload_time_iso_8601": "2023-01-18T08:09:00.002831Z",
            "url": "https://files.pythonhosted.org/packages/62/51/759f715c0d5c303d1cced256cd86f2a938e5a9b8046acabec6514673c110/zope.security-6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bc09b1d40cf9565a22742d349a34f11982346aea636e6f0afcf7fa72956334f",
                "md5": "b4c8de82f21ced8617d86e6289baff22",
                "sha256": "151460928fab7c06701432c3624f4c03f3598c547abad309900915e94aa802b1"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b4c8de82f21ced8617d86e6289baff22",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 168748,
            "upload_time": "2023-01-18T07:47:37",
            "upload_time_iso_8601": "2023-01-18T07:47:37.896265Z",
            "url": "https://files.pythonhosted.org/packages/6b/c0/9b1d40cf9565a22742d349a34f11982346aea636e6f0afcf7fa72956334f/zope.security-6.1-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": "f9dcfbe316c30f78918d2871518c69cbb5bc8a82610b474237cbe88246d5161f",
                "md5": "75112b12cf221447304d2396b15df6e5",
                "sha256": "7397f91d74e926eb417d45d1320ffc8ca20bddad855e131c14f2f0d6c670ee96"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75112b12cf221447304d2396b15df6e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 176095,
            "upload_time": "2023-01-18T07:48:46",
            "upload_time_iso_8601": "2023-01-18T07:48:46.500698Z",
            "url": "https://files.pythonhosted.org/packages/f9/dc/fbe316c30f78918d2871518c69cbb5bc8a82610b474237cbe88246d5161f/zope.security-6.1-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": "5a8088a4958d6de105984f02896d3530e88760353a049a9fe60cda196ccaa6e9",
                "md5": "2eaa6abcf42b70c19e7df72d11cbaa88",
                "sha256": "1082c1f4085547b1cc6c109720481e08f016fda44743a86b067a43476f9738d3"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2eaa6abcf42b70c19e7df72d11cbaa88",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 125989,
            "upload_time": "2023-01-18T07:46:29",
            "upload_time_iso_8601": "2023-01-18T07:46:29.580771Z",
            "url": "https://files.pythonhosted.org/packages/5a/80/88a4958d6de105984f02896d3530e88760353a049a9fe60cda196ccaa6e9/zope.security-6.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec7c271d6af6e5bd66c87dba8a6a3a2afb92923203adf29ad5f85b1c9891d694",
                "md5": "7690ebc463dd5dd8810cc29690578807",
                "sha256": "57b75b788cab2feac3064bde2f4b79cd1d9096090eb02cc54ab6298dbc7ae2e2"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7690ebc463dd5dd8810cc29690578807",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 124219,
            "upload_time": "2023-01-18T07:46:25",
            "upload_time_iso_8601": "2023-01-18T07:46:25.786962Z",
            "url": "https://files.pythonhosted.org/packages/ec/7c/271d6af6e5bd66c87dba8a6a3a2afb92923203adf29ad5f85b1c9891d694/zope.security-6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd86cafaae25224003923a0e0df32a405d0b1bba362dd5e3fb97a39de26665d6",
                "md5": "a8cf707d91ac1f61e8cb3be489053c87",
                "sha256": "40daeab3a1207cd162c2edcd065210d01bf93398d68e9d1f8a1d8d327e2c5150"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a8cf707d91ac1f61e8cb3be489053c87",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 124206,
            "upload_time": "2023-01-18T07:46:28",
            "upload_time_iso_8601": "2023-01-18T07:46:28.055325Z",
            "url": "https://files.pythonhosted.org/packages/fd/86/cafaae25224003923a0e0df32a405d0b1bba362dd5e3fb97a39de26665d6/zope.security-6.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "891109305ad739e81d79c007ff4fa220c31c00e662869f4cd18ddf68453e4af0",
                "md5": "0f5fe6ccb0b6017c4262f7487898d5e2",
                "sha256": "6db03d21ca82687aab1111a9dcb0df77665844dd631e0621c751b7a811247fbb"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f5fe6ccb0b6017c4262f7487898d5e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 183596,
            "upload_time": "2023-01-18T08:09:02",
            "upload_time_iso_8601": "2023-01-18T08:09:02.308861Z",
            "url": "https://files.pythonhosted.org/packages/89/11/09305ad739e81d79c007ff4fa220c31c00e662869f4cd18ddf68453e4af0/zope.security-6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0967f0ef9aa00911a17e51f0095c34ddb50ea77a8e7b1214c8d32cb38a365fe",
                "md5": "830a6c0556f712d892816cc34fbfbaf2",
                "sha256": "8b7367e88f63d94cb1f8e1aeba2bd2e26aecaede9ee519db5bed2e33bbd061ea"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "830a6c0556f712d892816cc34fbfbaf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 176324,
            "upload_time": "2023-01-18T07:47:40",
            "upload_time_iso_8601": "2023-01-18T07:47:40.495897Z",
            "url": "https://files.pythonhosted.org/packages/d0/96/7f0ef9aa00911a17e51f0095c34ddb50ea77a8e7b1214c8d32cb38a365fe/zope.security-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": "8221f8e01b1375c67c1a58dcbc7d6b571a97cc945b7a944a62ef2e54a4f5b512",
                "md5": "089249271f7d096b0861516e473759e6",
                "sha256": "fea5b41618c3f26bbbef0f15beb2595bbc282a0985f2f0e409ec8a2382b8368d"
            },
            "downloads": -1,
            "filename": "zope.security-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": "089249271f7d096b0861516e473759e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 183311,
            "upload_time": "2023-01-18T07:48:48",
            "upload_time_iso_8601": "2023-01-18T07:48:48.403829Z",
            "url": "https://files.pythonhosted.org/packages/82/21/f8e01b1375c67c1a58dcbc7d6b571a97cc945b7a944a62ef2e54a4f5b512/zope.security-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": "824c404e5f85713db4ea6f1f8a56c97b5dc3d5ee3faf62c87be586a840707127",
                "md5": "cf67f24f83a8232bfc81c67285366c70",
                "sha256": "3898ed86a9511f802cecc2d627b84b996918cd85f19ae7145a256dccb7be72a8"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cf67f24f83a8232bfc81c67285366c70",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 126135,
            "upload_time": "2023-01-18T07:47:52",
            "upload_time_iso_8601": "2023-01-18T07:47:52.447965Z",
            "url": "https://files.pythonhosted.org/packages/82/4c/404e5f85713db4ea6f1f8a56c97b5dc3d5ee3faf62c87be586a840707127/zope.security-6.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45d2079d171e9ec7440142c047ca313e6f849bb34719d924fb332f5427877416",
                "md5": "9a811dc52d03c7487dee5efa5a752c8d",
                "sha256": "8a3cc1e1e684eee8ef56b24628a0044e145dd37e10aab9470d73e17aa6ff7d5d"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a811dc52d03c7487dee5efa5a752c8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 124221,
            "upload_time": "2023-01-18T07:46:35",
            "upload_time_iso_8601": "2023-01-18T07:46:35.346231Z",
            "url": "https://files.pythonhosted.org/packages/45/d2/079d171e9ec7440142c047ca313e6f849bb34719d924fb332f5427877416/zope.security-6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b6dcabe4aff70d6d9b2b3351c5b85e2528fd5eb23516a2a2138bced232b5415",
                "md5": "a6c73627e850107a4404fdd77141137d",
                "sha256": "c6a3c8ea7cc5aec01056639130ac7c1602e8a729ff9eef8c352420536c9ffbae"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a6c73627e850107a4404fdd77141137d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 124211,
            "upload_time": "2023-01-18T07:46:37",
            "upload_time_iso_8601": "2023-01-18T07:46:37.723131Z",
            "url": "https://files.pythonhosted.org/packages/3b/6d/cabe4aff70d6d9b2b3351c5b85e2528fd5eb23516a2a2138bced232b5415/zope.security-6.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "595c278643698a2980241c16d40f73e6b5534c0506322bbb13b8def2bbfd6f57",
                "md5": "dd6feb56fbc050fe48e4aa54b0052fd0",
                "sha256": "f1c66ac2c865cb8a217299650a4c40c38cb85331861ce586816b65d5eebe455a"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dd6feb56fbc050fe48e4aa54b0052fd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 180548,
            "upload_time": "2023-01-18T08:09:04",
            "upload_time_iso_8601": "2023-01-18T08:09:04.925062Z",
            "url": "https://files.pythonhosted.org/packages/59/5c/278643698a2980241c16d40f73e6b5534c0506322bbb13b8def2bbfd6f57/zope.security-6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d09123e8b515e8752551b06016274be0fcda699ac301b8144ac095c44b924190",
                "md5": "30a97184e0382660785d713e6d84ea12",
                "sha256": "c8dd8846c1a558390d16613d198e01f3bc342d6798855afae6239741520499f7"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "30a97184e0382660785d713e6d84ea12",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 172920,
            "upload_time": "2023-01-18T07:47:42",
            "upload_time_iso_8601": "2023-01-18T07:47:42.581547Z",
            "url": "https://files.pythonhosted.org/packages/d0/91/23e8b515e8752551b06016274be0fcda699ac301b8144ac095c44b924190/zope.security-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": "c46b3d3cb8a9e9c8f00db89955f114e3636228bc8952a9df2999e0ffab98fcbf",
                "md5": "8a8f53127bd1f97f8bdb6bda77b6ff31",
                "sha256": "c54f02e165b3d7285cc07b7addc4a3780c487c1559584f0f0a29076ec33a79ce"
            },
            "downloads": -1,
            "filename": "zope.security-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": "8a8f53127bd1f97f8bdb6bda77b6ff31",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 179888,
            "upload_time": "2023-01-18T07:48:50",
            "upload_time_iso_8601": "2023-01-18T07:48:50.408433Z",
            "url": "https://files.pythonhosted.org/packages/c4/6b/3d3cb8a9e9c8f00db89955f114e3636228bc8952a9df2999e0ffab98fcbf/zope.security-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": "fc2179957b2a3852d31c015e4fca000491946a61d4334534ec467fa30a2d68aa",
                "md5": "8d6bda8233353384634fb512a6f04b39",
                "sha256": "737a95e4023f1c891d736732aaf23812fbf4bc984b9facf19ba4fba143d63755"
            },
            "downloads": -1,
            "filename": "zope.security-6.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d6bda8233353384634fb512a6f04b39",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 126134,
            "upload_time": "2023-01-18T07:49:20",
            "upload_time_iso_8601": "2023-01-18T07:49:20.897266Z",
            "url": "https://files.pythonhosted.org/packages/fc/21/79957b2a3852d31c015e4fca000491946a61d4334534ec467fa30a2d68aa/zope.security-6.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5c98f4d997d11047d10709f6352d48b7dfc82d4f39352523d9e80fd13a77981",
                "md5": "d7930482aebf447a2f42b5e03da1f7ce",
                "sha256": "4646a764152866d0fb624e63b7ed68a71ab9a21dd41e8c0ae0591234364d68c5"
            },
            "downloads": -1,
            "filename": "zope.security-6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d7930482aebf447a2f42b5e03da1f7ce",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 143392,
            "upload_time": "2023-01-18T07:48:38",
            "upload_time_iso_8601": "2023-01-18T07:48:38.757531Z",
            "url": "https://files.pythonhosted.org/packages/b5/c9/8f4d997d11047d10709f6352d48b7dfc82d4f39352523d9e80fd13a77981/zope.security-6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-18 07:48:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.security",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "appveyor": true,
    "tox": true,
    "lcname": "zope.security"
}
        
Elapsed time: 0.11872s