zope.interface


Namezope.interface JSON
Version 6.3 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zope.interface
SummaryInterfaces for Python
upload_time2024-04-12 15:14:21
maintainerNone
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords interface components plugins
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ====================
 ``zope.interface``
====================

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

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

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

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

This package is intended to be independently reusable in any Python
project. It is maintained by the `Zope Toolkit project
<https://zopetoolkit.readthedocs.io/>`_.

This package provides an implementation of "object interfaces" for Python.
Interfaces are a mechanism for labeling objects as conforming to a given
API or contract. So, this package can be considered as implementation of
the `Design By Contract`_ methodology support in Python.

.. _Design By Contract: http://en.wikipedia.org/wiki/Design_by_contract

For detailed documentation, please see https://zopeinterface.readthedocs.io/en/latest/

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

6.3 (2024-04-12)
================

- Add preliminary support for Python 3.13 as of 3.13a6.


6.2 (2024-02-16)
================

- Add preliminary support for Python 3.13 as of 3.13a3.

- Add support to use the pipe (``|``) syntax for ``typing.Union``.
  (`#280 <https://github.com/zopefoundation/zope.interface/issues/280>`_)


6.1 (2023-10-05)
================

- Build Linux binary wheels for Python 3.12.

- Add support for Python 3.12.

- Fix building of the docs for non-final versions.


6.0 (2023-03-17)
================

- Build Linux binary wheels for Python 3.11.

- Drop support for Python 2.7, 3.5, 3.6.

- Fix test deprecation warning on Python 3.11.

- Add preliminary support for Python 3.12 as of 3.12a5.

- Drop:

    + `zope.interface.implements`
    + `zope.interface.implementsOnly`
    + `zope.interface.classProvides`


5.5.2 (2022-11-17)
==================

- Add support for building arm64 wheels on macOS.


5.5.1 (2022-11-03)
==================

- Add support for final Python 3.11 release.


5.5.0 (2022-10-10)
==================

- Add support for Python 3.10 and 3.11 (as of 3.11.0rc2).

- Add missing Trove classifier showing support for Python 3.9.

- Add some more entries to ``zope.interface.interfaces.__all__``.

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


5.4.0 (2021-04-15)
==================

- Make the C implementation of the ``__providedBy__`` descriptor stop
  ignoring all errors raised when accessing the instance's
  ``__provides__``. Now it behaves like the Python version and only
  catches ``AttributeError``. The previous behaviour could lead to
  crashing the interpreter in cases of recursion and errors. See
  `issue 239 <https://github.com/zopefoundation/zope.interface/issues>`_.

- Update the ``repr()`` and ``str()`` of various objects to be shorter
  and more informative. In many cases, the ``repr()`` is now something
  that can be evaluated to produce an equal object. For example, what
  was previously printed as ``<implementedBy builtins.list>`` is now
  shown as ``classImplements(list, IMutableSequence, IIterable)``. See
  `issue 236 <https://github.com/zopefoundation/zope.interface/issues/236>`_.

- Make ``Declaration.__add__`` (as in ``implementedBy(Cls) +
  ISomething``) try harder to preserve a consistent resolution order
  when the two arguments share overlapping pieces of the interface
  inheritance hierarchy. Previously, the right hand side was always
  put at the end of the resolution order, which could easily produce
  invalid orders. See `issue 193
  <https://github.com/zopefoundation/zope.interface/issues/193>`_.

5.3.0 (2020-03-21)
==================

- No changes from 5.3.0a1


5.3.0a1 (2021-03-18)
====================

- Improve the repr of ``zope.interface.Provides`` to remove ambiguity
  about what is being provided. This is especially helpful diagnosing
  IRO issues.

- Allow subclasses of ``BaseAdapterRegistry`` (including
  ``AdapterRegistry`` and ``VerifyingAdapterRegistry``) to have
  control over the data structures. This allows persistent
  implementations such as those based on ZODB to choose more scalable
  options (e.g., BTrees instead of dicts). See `issue 224
  <https://github.com/zopefoundation/zope.interface/issues/224>`_.

- Fix a reference counting issue in ``BaseAdapterRegistry`` that could
  lead to references to interfaces being kept around even when all
  utilities/adapters/subscribers providing that interface have been
  removed. This is mostly an issue for persistent implementations.
  Note that this only corrects the issue moving forward, it does not
  solve any already corrupted reference counts. See `issue 227
  <https://github.com/zopefoundation/zope.interface/issues/227>`_.

- Add the method ``BaseAdapterRegistry.rebuild()``. This can be used
  to fix the reference counting issue mentioned above, as well as to
  update the data structures when custom data types have changed.

- Add the interface method ``IAdapterRegistry.subscribed()`` and
  implementation ``BaseAdapterRegistry.subscribed()`` for querying
  directly registered subscribers. See `issue 230
  <https://github.com/zopefoundation/zope.interface/issues/230>`_.

- Add the maintenance method
  ``Components.rebuildUtilityRegistryFromLocalCache()``. Most users
  will not need this, but it can be useful if the ``Components.utilities``
  registry is suspected to be out of sync with the ``Components``
  object itself (this might happen to persistent ``Components``
  implementations in the face of bugs).

- Fix the ``Provides`` and ``ClassProvides`` descriptors to stop
  allowing redundant interfaces (those already implemented by the
  underlying class or meta class) to produce an inconsistent
  resolution order. This is similar to the change in ``@implementer``
  in 5.1.0, and resolves inconsistent resolution orders with
  ``zope.proxy`` and ``zope.location``. See `issue 207
  <https://github.com/zopefoundation/zope.interface/issues/207>`_.

5.2.0 (2020-11-05)
==================

- Add documentation section ``Persistency and Equality``
  (`#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_).

- Create arm64 wheels.

- Add support for Python 3.9.


5.1.2 (2020-10-01)
==================

- Make sure to call each invariant only once when validating invariants.
  Previously, invariants could be called multiple times because when an
  invariant is defined in an interface, it's found by in all interfaces
  inheriting from that interface.  See `pull request 215
  <https://github.com/zopefoundation/zope.interface/pull/215/>`_.

5.1.1 (2020-09-30)
==================

- Fix the method definitions of ``IAdapterRegistry.subscribe``,
  ``subscriptions`` and ``subscribers``. Previously, they all were
  defined to accept a ``name`` keyword argument, but subscribers have
  no names and the implementation of that interface did not accept
  that argument. See `issue 208
  <https://github.com/zopefoundation/zope.interface/issues/208>`_.

- Fix a potential reference leak in the C optimizations. Previously,
  applications that dynamically created unique ``Specification``
  objects (e.g., used ``@implementer`` on dynamic classes) could
  notice a growth of small objects over time leading to increased
  garbage collection times. See `issue 216
  <https://github.com/zopefoundation/zope.interface/issues/216>`_.

  .. caution::

     This leak could prevent interfaces used as the bases of
     other interfaces from being garbage collected. Those interfaces
     will now be collected.

     One way in which this would manifest was that ``weakref.ref``
     objects (and things built upon them, like
     ``Weak[Key|Value]Dictionary``) would continue to have access to
     the original object even if there were no other visible
     references to Python and the original object *should* have been
     collected. This could be especially problematic for the
     ``WeakKeyDictionary`` when combined with dynamic or local
     (created in the scope of a function) interfaces, since interfaces
     are hashed based just on their name and module name. See the
     linked issue for an example of a resulting ``KeyError``.

     Note that such potential errors are not new, they are just once
     again a possibility.

5.1.0 (2020-04-08)
==================

- Make ``@implementer(*iface)`` and ``classImplements(cls, *iface)``
  ignore redundant interfaces. If the class already implements an
  interface through inheritance, it is no longer redeclared
  specifically for *cls*. This solves many instances of inconsistent
  resolution orders, while still allowing the interface to be declared
  for readability and maintenance purposes. See `issue 199
  <https://github.com/zopefoundation/zope.interface/issues/199>`_.

- Remove all bare ``except:`` statements. Previously, when accessing
  special attributes such as ``__provides__``, ``__providedBy__``,
  ``__class__`` and ``__conform__``, this package wrapped such access
  in a bare ``except:`` statement, meaning that many errors could pass
  silently; typically this would result in a fallback path being taken
  and sometimes (like with ``providedBy()``) the result would be
  non-sensical. This is especially true when those attributes are
  implemented with descriptors. Now, only ``AttributeError`` is
  caught. This makes errors more obvious.

  Obviously, this means that some exceptions will be propagated
  differently than before. In particular, ``RuntimeError`` raised by
  Acquisition in the case of circular containment will now be
  propagated. Previously, when adapting such a broken object, a
  ``TypeError`` would be the common result, but now it will be a more
  informative ``RuntimeError``.

  In addition, ZODB errors like ``POSKeyError`` could now be
  propagated where previously they would ignored by this package.

  See `issue 200 <https://github.com/zopefoundation/zope.interface/issues/200>`_.

- Require that the second argument (*bases*) to ``InterfaceClass`` is
  a tuple. This only matters when directly using ``InterfaceClass`` to
  create new interfaces dynamically. Previously, an individual
  interface was allowed, but did not work correctly. Now it is
  consistent with ``type`` and requires a tuple.

- Let interfaces define custom ``__adapt__`` methods. This implements
  the other side of the :pep:`246` adaptation protocol: objects being
  adapted could already implement ``__conform__`` if they know about
  the interface, and now interfaces can implement ``__adapt__`` if
  they know about particular objects. There is no performance penalty
  for interfaces that do not supply custom ``__adapt__`` methods.

  This includes the ability to add new methods, or override existing
  interface methods using the new ``@interfacemethod`` decorator.

  See `issue 3 <https://github.com/zopefoundation/zope.interface/issues/3>`_.

- Make the internal singleton object returned by APIs like
  ``implementedBy`` and ``directlyProvidedBy`` for objects that
  implement or provide no interfaces more immutable. Previously an
  internal cache could be mutated. See `issue 204
  <https://github.com/zopefoundation/zope.interface/issues/204>`_.

5.0.2 (2020-03-30)
==================

- Ensure that objects that implement no interfaces (such as direct
  subclasses of ``object``) still include ``Interface`` itself in
  their ``__iro___`` and ``__sro___``. This fixes adapter registry
  lookups for such objects when the adapter is registered for
  ``Interface``. See `issue 197
  <https://github.com/zopefoundation/zope.interface/issues/197>`_.


5.0.1 (2020-03-21)
==================

- Ensure the resolution order for ``InterfaceClass`` is consistent.
  See `issue 192 <https://github.com/zopefoundation/zope.interface/issues/192>`_.

- Ensure the resolution order for ``collections.OrderedDict`` is
  consistent on CPython 2. (It was already consistent on Python 3 and PyPy).

- Fix the handling of the ``ZOPE_INTERFACE_STRICT_IRO`` environment
  variable. Previously, ``ZOPE_INTERFACE_STRICT_RO`` was read, in
  contrast with the documentation. See `issue 194
  <https://github.com/zopefoundation/zope.interface/issues/194>`_.


5.0.0 (2020-03-19)
==================

- Make an internal singleton object returned by APIs like
  ``implementedBy`` and ``directlyProvidedBy`` immutable. Previously,
  it was fully mutable and allowed changing its ``__bases___``. That
  could potentially lead to wrong results in pathological corner
  cases. See `issue 158
  <https://github.com/zopefoundation/zope.interface/issues/158>`_.

- Support the ``PURE_PYTHON`` environment variable at runtime instead
  of just at wheel build time. A value of 0 forces the C extensions to
  be used (even on PyPy) failing if they aren't present. Any other
  value forces the Python implementation to be used, ignoring the C
  extensions. See `PR 151 <https://github.com/zopefoundation/zope.interface/pull/151>`_.

- Cache the result of ``__hash__`` method in ``InterfaceClass`` as a
  speed optimization. The method is called very often (i.e several
  hundred thousand times during Plone 5.2 startup). Because the hash value never
  changes it can be cached. This improves test performance from 0.614s
  down to 0.575s (1.07x faster). In a real world Plone case a reindex
  index came down from 402s to 320s (1.26x faster). See `PR 156
  <https://github.com/zopefoundation/zope.interface/pull/156>`_.

- Change the C classes ``SpecificationBase`` and its subclass
  ``ClassProvidesBase`` to store implementation attributes in their structures
  instead of their instance dictionaries. This eliminates the use of
  an undocumented private C API function, and helps make some
  instances require less memory. See `PR 154 <https://github.com/zopefoundation/zope.interface/pull/154>`_.

- Reduce memory usage in other ways based on observations of usage
  patterns in Zope (3) and Plone code bases.

  - Specifications with no dependents are common (more than 50%) so
    avoid allocating a ``WeakKeyDictionary`` unless we need it.
  - Likewise, tagged values are relatively rare, so don't allocate a
    dictionary to hold them until they are used.
  - Use ``__slots___`` or the C equivalent ``tp_members`` in more
    common places. Note that this removes the ability to set arbitrary
    instance variables on certain objects.
    See `PR 155 <https://github.com/zopefoundation/zope.interface/pull/155>`_.

  The changes in this release resulted in a 7% memory reduction after
  loading about 6,000 modules that define about 2,200 interfaces.

  .. caution::

     Details of many private attributes have changed, and external use
     of those private attributes may break. In particular, the
     lifetime and default value of ``_v_attrs`` has changed.

- Remove support for hashing uninitialized interfaces. This could only
  be done by subclassing ``InterfaceClass``. This has generated a
  warning since it was first added in 2011 (3.6.5). Please call the
  ``InterfaceClass`` constructor or otherwise set the appropriate
  fields in your subclass before attempting to hash or sort it. See
  `issue 157 <https://github.com/zopefoundation/zope.interface/issues/157>`_.

- Remove unneeded override of the ``__hash__`` method from
  ``zope.interface.declarations.Implements``. Watching a reindex index
  process in ZCatalog with on a Py-Spy after 10k samples the time for
  ``.adapter._lookup`` was reduced from 27.5s to 18.8s (~1.5x faster).
  Overall reindex index time shrunk from 369s to 293s (1.26x faster).
  See `PR 161
  <https://github.com/zopefoundation/zope.interface/pull/161>`_.

- Make the Python implementation closer to the C implementation by
  ignoring all exceptions, not just ``AttributeError``, during (parts
  of) interface adaptation. See `issue 163
  <https://github.com/zopefoundation/zope.interface/issues/163>`_.

- Micro-optimization in ``.adapter._lookup`` , ``.adapter._lookupAll``
  and ``.adapter._subscriptions``: By loading ``components.get`` into
  a local variable before entering the loop a bytcode "LOAD_FAST 0
  (components)" in the loop can be eliminated. In Plone, while running
  all tests, average speedup of the "owntime" of ``_lookup`` is ~5x.
  See `PR 167
  <https://github.com/zopefoundation/zope.interface/pull/167>`_.

- Add ``__all__`` declarations to all modules. This helps tools that
  do auto-completion and documentation and results in less cluttered
  results. Wildcard ("*") are not recommended and may be affected. See
  `issue 153
  <https://github.com/zopefoundation/zope.interface/issues/153>`_.

- Fix ``verifyClass`` and ``verifyObject`` for builtin types like
  ``dict`` that have methods taking an optional, unnamed argument with
  no default value like ``dict.pop``. On PyPy3, the verification is
  strict, but on PyPy2 (as on all versions of CPython) those methods
  cannot be verified and are ignored. See `issue 118
  <https://github.com/zopefoundation/zope.interface/issues/118>`_.

- Update the common interfaces ``IEnumerableMapping``,
  ``IExtendedReadMapping``, ``IExtendedWriteMapping``,
  ``IReadSequence`` and ``IUniqueMemberWriteSequence`` to no longer
  require methods that were removed from Python 3 on Python 3, such as
  ``__setslice___``. Now, ``dict``, ``list`` and ``tuple`` properly
  verify as ``IFullMapping``, ``ISequence`` and ``IReadSequence,``
  respectively on all versions of Python.

- Add human-readable ``__str___`` and ``__repr___`` to ``Attribute``
  and ``Method``. These contain the name of the defining interface
  and the attribute. For methods, it also includes the signature.

- Change the error strings raised by ``verifyObject`` and
  ``verifyClass``. They now include more human-readable information
  and exclude extraneous lines and spaces. See `issue 170
  <https://github.com/zopefoundation/zope.interface/issues/170>`_.

  .. caution:: This will break consumers (such as doctests) that
               depended on the exact error messages.

- Make ``verifyObject`` and ``verifyClass`` report all errors, if the
  candidate object has multiple detectable violations. Previously they
  reported only the first error. See `issue
  <https://github.com/zopefoundation/zope.interface/issues/171>`_.

  Like the above, this will break consumers depending on the exact
  output of error messages if more than one error is present.

- Add ``zope.interface.common.collections``,
  ``zope.interface.common.numbers``, and ``zope.interface.common.io``.
  These modules define interfaces based on the ABCs defined in the
  standard library ``collections.abc``, ``numbers`` and ``io``
  modules, respectively. Importing these modules will make the
  standard library concrete classes that are registered with those
  ABCs declare the appropriate interface. See `issue 138
  <https://github.com/zopefoundation/zope.interface/issues/138>`_.

- Add ``zope.interface.common.builtins``. This module defines
  interfaces of common builtin types, such as ``ITextString`` and
  ``IByteString``, ``IDict``, etc. These interfaces extend the
  appropriate interfaces from ``collections`` and ``numbers``, and the
  standard library classes implement them after importing this module.
  This is intended as a replacement for third-party packages like
  `dolmen.builtins <https://pypi.org/project/dolmen.builtins/>`_.
  See `issue 138 <https://github.com/zopefoundation/zope.interface/issues/138>`_.

- Make ``providedBy()`` and ``implementedBy()`` respect ``super``
  objects. For instance, if class ``Derived`` implements ``IDerived``
  and extends ``Base`` which in turn implements ``IBase``, then
  ``providedBy(super(Derived, derived))`` will return ``[IBase]``.
  Previously it would have returned ``[IDerived]`` (in general, it
  would previously have returned whatever would have been returned
  without ``super``).

  Along with this change, adapter registries will unpack ``super``
  objects into their ``__self___`` before passing it to the factory.
  Together, this means that ``component.getAdapter(super(Derived,
  self), ITarget)`` is now meaningful.

  See `issue 11 <https://github.com/zopefoundation/zope.interface/issues/11>`_.

- Fix a potential interpreter crash in the low-level adapter
  registry lookup functions. See issue 11.

- Adopt Python's standard `C3 resolution order
  <https://www.python.org/download/releases/2.3/mro/>`_ to compute the
  ``__iro__`` and ``__sro__`` of interfaces, with tweaks to support
  additional cases that are common in interfaces but disallowed for
  Python classes. Previously, an ad-hoc ordering that made no
  particular guarantees was used.

  This has many beneficial properties, including the fact that base
  interface and base classes tend to appear near the end of the
  resolution order instead of the beginning. The resolution order in
  general should be more predictable and consistent.

  .. caution::
     In some cases, especially with complex interface inheritance
     trees or when manually providing or implementing interfaces, the
     resulting IRO may be quite different. This may affect adapter
     lookup.

  The C3 order enforces some constraints in order to be able to
  guarantee a sensible ordering. Older versions of zope.interface did
  not impose similar constraints, so it was possible to create
  interfaces and declarations that are inconsistent with the C3
  constraints. In that event, zope.interface will still produce a
  resolution order equal to the old order, but it won't be guaranteed
  to be fully C3 compliant. In the future, strict enforcement of C3
  order may be the default.

  A set of environment variables and module constants allows
  controlling several aspects of this new behaviour. It is possible to
  request warnings about inconsistent resolution orders encountered,
  and even to forbid them. Differences between the C3 resolution order
  and the previous order can be logged, and, in extreme cases, the
  previous order can still be used (this ability will be removed in
  the future). For details, see the documentation for
  ``zope.interface.ro``.

- Make inherited tagged values in interfaces respect the resolution
  order (``__iro__``), as method and attribute lookup does. Previously
  tagged values could give inconsistent results. See `issue 190
  <https://github.com/zopefoundation/zope.interface/issues/190>`_.

- Add ``getDirectTaggedValue`` (and related methods) to interfaces to
  allow accessing tagged values irrespective of inheritance. See
  `issue 190
  <https://github.com/zopefoundation/zope.interface/issues/190>`_.

- Ensure that ``Interface`` is always the last item in the ``__iro__``
  and ``__sro__``. This is usually the case, but if classes that do
  not implement any interfaces are part of a class inheritance
  hierarchy, ``Interface`` could be assigned too high a priority.
  See `issue 8 <https://github.com/zopefoundation/zope.interface/issues/8>`_.

- Implement sorting, equality, and hashing in C for ``Interface``
  objects. In micro benchmarks, this makes those operations 40% to 80%
  faster. This translates to a 20% speed up in querying adapters.

  Note that this changes certain implementation details. In
  particular, ``InterfaceClass`` now has a non-default metaclass, and
  it is enforced that ``__module__`` in instances of
  ``InterfaceClass`` is read-only.

  See `PR 183 <https://github.com/zopefoundation/zope.interface/pull/183>`_.


4.7.2 (2020-03-10)
==================

- Remove deprecated use of setuptools features.  See `issue 30
  <https://github.com/zopefoundation/zope.interface/issues/30>`_.


4.7.1 (2019-11-11)
==================

- Use Python 3 syntax in the documentation.  See `issue 119
  <https://github.com/zopefoundation/zope.interface/issues/119>`_.


4.7.0 (2019-11-11)
==================

- Drop support for Python 3.4.

- Change ``queryTaggedValue``, ``getTaggedValue``,
  ``getTaggedValueTags`` in interfaces. They now include inherited
  values by following ``__bases__``. See `PR 144
  <https://github.com/zopefoundation/zope.interface/pull/144>`_.

  .. caution:: This may be a breaking change.

- Add support for Python 3.8.


4.6.0 (2018-10-23)
==================

- Add support for Python 3.7

- Fix ``verifyObject`` for class objects with staticmethods on
  Python 3. See `issue 126
  <https://github.com/zopefoundation/zope.interface/issues/126>`_.


4.5.0 (2018-04-19)
==================

- Drop support for 3.3, avoid accidental dependence breakage via setup.py.
  See `PR 110 <https://github.com/zopefoundation/zope.interface/pull/110>`_.
- Allow registering and unregistering instance methods as listeners.
  See `issue 12 <https://github.com/zopefoundation/zope.interface/issues/12>`_
  and `PR 102 <https://github.com/zopefoundation/zope.interface/pull/102>`_.
- Synchronize and simplify zope/__init__.py. See `issue 114
  <https://github.com/zopefoundation/zope.interface/issues/114>`_


4.4.3 (2017-09-22)
==================

- Avoid exceptions when the ``__annotations__`` attribute is added to
  interface definitions with Python 3.x type hints. See `issue 98
  <https://github.com/zopefoundation/zope.interface/issues/98>`_.
- Fix the possibility of a rare crash in the C extension when
  deallocating items. See `issue 100
  <https://github.com/zopefoundation/zope.interface/issues/100>`_.


4.4.2 (2017-06-14)
==================

- Fix a regression storing
  ``zope.component.persistentregistry.PersistentRegistry`` instances.
  See `issue 85 <https://github.com/zopefoundation/zope.interface/issues/85>`_.

- Fix a regression that could lead to the utility registration cache
  of ``Components`` getting out of sync. See `issue 93
  <https://github.com/zopefoundation/zope.interface/issues/93>`_.

4.4.1 (2017-05-13)
==================

- Simplify the caching of utility-registration data. In addition to
  simplification, avoids spurious test failures when checking for
  leaks in tests with persistent registries. See `pull 84
  <https://github.com/zopefoundation/zope.interface/pull/84>`_.

- Raise ``ValueError`` when non-text names are passed to adapter registry
  methods:  prevents corruption of lookup caches.

4.4.0 (2017-04-21)
==================

- Avoid a warning from the C compiler.
  (https://github.com/zopefoundation/zope.interface/issues/71)

- Add support for Python 3.6.

4.3.3 (2016-12-13)
==================

- Correct typos and ReST formatting errors in documentation.

- Add API documentation for the adapter registry.

- Ensure that the ``LICENSE.txt`` file is included in built wheels.

- Fix C optimizations broken on Py3k.  See the Python bug at:
  http://bugs.python.org/issue15657
  (https://github.com/zopefoundation/zope.interface/issues/60)


4.3.2 (2016-09-05)
==================

- Fix equality testing of ``implementedBy`` objects and proxies.
  (https://github.com/zopefoundation/zope.interface/issues/55)


4.3.1 (2016-08-31)
==================

- Support Components subclasses that are not hashable.
  (https://github.com/zopefoundation/zope.interface/issues/53)


4.3.0 (2016-08-31)
==================

- Add the ability to sort the objects returned by ``implementedBy``.
  This is compatible with the way interface classes sort so they can
  be used together in ordered containers like BTrees.
  (https://github.com/zopefoundation/zope.interface/issues/42)

- Make ``setuptools`` a hard dependency of ``setup.py``.
  (https://github.com/zopefoundation/zope.interface/issues/13)

- Change a linear algorithm (O(n)) in ``Components.registerUtility`` and
  ``Components.unregisterUtility`` into a dictionary lookup (O(1)) for
  hashable components. This substantially improves the time taken to
  manipulate utilities in large registries at the cost of some
  additional memory usage. (https://github.com/zopefoundation/zope.interface/issues/46)


4.2.0 (2016-06-10)
==================

- Add support for Python 3.5

- Drop support for Python 2.6 and 3.2.


4.1.3 (2015-10-05)
==================

- Fix installation without a C compiler on Python 3.5
  (https://github.com/zopefoundation/zope.interface/issues/24).


4.1.2 (2014-12-27)
==================

- Add support for PyPy3.

- Remove unittest assertions deprecated in Python3.x.

- Add ``zope.interface.document.asReStructuredText``, which formats the
  generated text for an interface using ReST double-backtick markers.


4.1.1 (2014-03-19)
==================

- Add support for Python 3.4.


4.1.0 (2014-02-05)
==================

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

- Add ``@named(name)`` declaration, that specifies the component name, so it
  does not have to be passed in during registration.


4.0.5 (2013-02-28)
==================

- Fix a bug where a decorated method caused false positive failures on
  ``verifyClass()``.


4.0.4 (2013-02-21)
==================

- Fix a bug that was revealed by porting zope.traversing. During a loop, the
  loop body modified a weakref dict causing a ``RuntimeError`` error.

4.0.3 (2012-12-31)
==================

- Fleshed out PyPI Trove classifiers.

4.0.2 (2012-11-21)
==================

- Add support for Python 3.3.

- Restored ability to install the package in the absence of ``setuptools``.

- LP #1055223:  Fix test which depended on dictionary order and failed randomly
  in Python 3.3.

4.0.1 (2012-05-22)
==================

- Drop explicit ``DeprecationWarnings`` for "class advice" APIS (these
  APIs are still deprecated under Python 2.x, and still raise an exception
  under Python 3.x, but no longer cause a warning to be emitted under
  Python 2.x).

4.0.0 (2012-05-16)
==================

- Automated build of Sphinx HTML docs and running doctest snippets via tox.

- Deprecate the "class advice" APIs from ``zope.interface.declarations``:
  ``implements``, ``implementsOnly``, and ``classProvides``.  In their place,
  prefer the equivalent class decorators: ``@implementer``,
  ``@implementer_only``, and ``@provider``.  Code which uses the deprecated
  APIs will not work as expected under Py3k.

- Remove use of '2to3' and associated fixers when installing under Py3k.
  The code is now in a "compatible subset" which supports Python 2.6, 2.7,
  and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language
  spec).

- Drop explicit support for Python 2.4 / 2.5 / 3.1.

- Add support for PyPy.

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

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

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

- Replace all unittest coverage previously accomplished via doctests with
  unittests.  The doctests have been moved into a ``docs`` section, managed
  as a Sphinx collection.

- LP #910987:  Ensure that the semantics of the ``lookup`` method of
  ``zope.interface.adapter.LookupBase`` are the same in both the C and
  Python implementations.

- LP #900906:  Avoid exceptions due to tne new ``__qualname__`` attribute
  added in Python 3.3 (see PEP 3155 for rationale).  Thanks to Antoine
  Pitrou for the patch.

3.8.0 (2011-09-22)
==================

- New module ``zope.interface.registry``.  This is code moved from
  ``zope.component.registry`` which implements a basic nonperistent component
  registry as ``zope.interface.registry.Components``.  This class was moved
  from ``zope.component`` to make porting systems (such as Pyramid) that rely
  only on a basic component registry to Python 3 possible without needing to
  port the entirety of the ``zope.component`` package.  Backwards
  compatibility import shims have been left behind in ``zope.component``, so
  this change will not break any existing code.

- New ``tests_require`` dependency: ``zope.event`` to test events sent by
  Components implementation.  The ``zope.interface`` package does not have a
  hard dependency on ``zope.event``, but if ``zope.event`` is importable, it
  will send component registration events when methods of an instance of
  ``zope.interface.registry.Components`` are called.

- New interfaces added to support ``zope.interface.registry.Components``
  addition: ``ComponentLookupError``, ``Invalid``, ``IObjectEvent``,
  ``ObjectEvent``, ``IComponentLookup``, ``IRegistration``,
  ``IUtilityRegistration``, ``IAdapterRegistration``,
  ``ISubscriptionAdapterRegistration``, ``IHandlerRegistration``,
  ``IRegistrationEvent``, ``RegistrationEvent``, ``IRegistered``,
  ``Registered``, ``IUnregistered``, ``Unregistered``,
  ``IComponentRegistry``, and ``IComponents``.

- No longer Python 2.4 compatible (tested under 2.5, 2.6, 2.7, and 3.2).

3.7.0 (2011-08-13)
==================

- Move changes from 3.6.2 - 3.6.5 to a new 3.7.x release line.

3.6.7 (2011-08-20)
==================

- Fix sporadic failures on x86-64 platforms in tests of rich comparisons
  of interfaces.

3.6.6 (2011-08-13)
==================

- LP #570942:  Now correctly compare interfaces  from different modules but
  with the same names.

  N.B.: This is a less intrusive / destabilizing fix than the one applied in
  3.6.3:  we only fix the underlying cmp-alike function, rather than adding
  the other "rich comparison" functions.

- Revert to software as released with 3.6.1 for "stable" 3.6 release branch.

3.6.5 (2011-08-11)
==================

- LP #811792:  work around buggy behavior in some subclasses of
  ``zope.interface.interface.InterfaceClass``, which invoke ``__hash__``
  before initializing ``__module__`` and ``__name__``.  The workaround
  returns a fixed constant hash in such cases, and issues a ``UserWarning``.

- LP #804832:  Under PyPy, ``zope.interface`` should not build its C
  extension.  Also, prevent attempting to build it under Jython.

- Add a tox.ini for easier xplatform testing.

- Fix testing deprecation warnings issued when tested under Py3K.

3.6.4 (2011-07-04)
==================

- LP 804951:  InterfaceClass instances were unhashable under Python 3.x.

3.6.3 (2011-05-26)
==================

- LP #570942:  Now correctly compare interfaces  from different modules but
  with the same names.

3.6.2 (2011-05-17)
==================

- Moved detailed documentation out-of-line from PyPI page, linking instead to
  http://docs.zope.org/zope.interface .

- Fixes for small issues when running tests under Python 3.2 using
  ``zope.testrunner``.

- LP # 675064:  Specify return value type for C optimizations module init
  under Python 3:  undeclared value caused warnings, and segfaults on some
  64 bit architectures.

- setup.py now raises RuntimeError if you don't have Distutils installed when
  running under Python 3.

3.6.1 (2010-05-03)
==================

- A non-ASCII character in the changelog made 3.6.0 uninstallable on
  Python 3 systems with another default encoding than UTF-8.

- Fix compiler warnings under GCC 4.3.3.

3.6.0 (2010-04-29)
==================

- LP #185974:  Clear the cache used by ``Specificaton.get`` inside
  ``Specification.changed``.  Thanks to Jacob Holm for the patch.

- Add support for Python 3.1. Contributors:

    Lennart Regebro
    Martin v Loewis
    Thomas Lotze
    Wolfgang Schnerring

  The 3.1 support is completely backwards compatible. However, the implements
  syntax used under Python 2.X does not work under 3.X, since it depends on
  how metaclasses are implemented and this has changed. Instead it now supports
  a decorator syntax (also under Python 2.X)::

    class Foo:
        implements(IFoo)
        ...

  can now also be written::

    @implementer(IFoo):
    class Foo:
        ...

  There are 2to3 fixers available to do this change automatically in the
  zope.fixers package.

- Python 2.3 is no longer supported.


3.5.4 (2009-12-23)
==================

- Use the standard Python doctest module instead of zope.testing.doctest, which
  has been deprecated.


3.5.3 (2009-12-08)
==================

- Fix an edge case: make providedBy() work when a class has '__provides__' in
  its __slots__ (see http://thread.gmane.org/gmane.comp.web.zope.devel/22490)


3.5.2 (2009-07-01)
==================

- BaseAdapterRegistry.unregister, unsubscribe: Remove empty portions of
  the data structures when something is removed.  This avoids leaving
  references to global objects (interfaces) that may be slated for
  removal from the calling application.


3.5.1 (2009-03-18)
==================

- verifyObject: use getattr instead of hasattr to test for object attributes
  in order to let exceptions other than AttributeError raised by properties
  propagate to the caller

- Add Sphinx-based documentation building to the package buildout
  configuration. Use the ``bin/docs`` command after buildout.

- Improve package description a bit. Unify changelog entries formatting.

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


3.5.0 (2008-10-26)
==================

- Fix declaration of _zope_interface_coptimizations, it's not a top level
  package.

- Add a DocTestSuite for odd.py module, so their tests are run.

- Allow to bootstrap on Jython.

- Fix https://bugs.launchpad.net/zope3/3.3/+bug/98388: ISpecification
  was missing a declaration for __iro__.

- Add optional code optimizations support, which allows the building
  of C code optimizations to fail (Jython).

- Replace `_flatten` with a non-recursive implementation, effectively making
  it 3x faster.


3.4.1 (2007-10-02)
==================

- Fix a setup bug that prevented installation from source on systems
  without setuptools.


3.4.0 (2007-07-19)
==================

- Final release for 3.4.0.


3.4.0b3 (2007-05-22)
====================


- When checking whether an object is already registered, use identity
  comparison, to allow adding registering with picky custom comparison methods.


3.3.0.1 (2007-01-03)
====================

- Made a reference to OverflowWarning, which disappeared in Python
  2.5, conditional.


3.3.0 (2007/01/03)
==================

New Features
------------

- Refactor the adapter-lookup algorithim to make it much simpler and faster.

  Also, implement more of the adapter-lookup logic in C, making
  debugging of application code easier, since there is less
  infrastructre code to step through.

- Treat objects without interface declarations as if they
  declared that they provide ``zope.interface.Interface``.

- Add a number of richer new adapter-registration interfaces
  that provide greater control and introspection.

- Add a new interface decorator to zope.interface that allows the
  setting of tagged values on an interface at definition time (see
  zope.interface.taggedValue).

Bug Fixes
---------

- A bug in multi-adapter lookup sometimes caused incorrect adapters to
  be returned.


3.2.0.2 (2006-04-15)
====================

- Fix packaging bug:  'package_dir' must be a *relative* path.


3.2.0.1 (2006-04-14)
====================

- Packaging change:  suppress inclusion of 'setup.cfg' in 'sdist' builds.


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

- Corresponds to the version of the zope.interface package shipped as part of
  the Zope 3.2.0 release.


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

- Corresponds to the version of the zope.interface package shipped as part of
  the Zope 3.1.0 release.

- Made attribute resolution order consistent with component lookup order,
  i.e. new-style class MRO semantics.

- Deprecate 'isImplementedBy' and 'isImplementedByInstancesOf' APIs in
  favor of 'implementedBy' and 'providedBy'.


3.0.1 (2005-07-27)
==================

- Corresponds to the version of the zope.interface package shipped as part of
  the Zope X3.0.1 release.

- Fix a bug reported by James Knight, which caused adapter registries
  to fail occasionally to reflect declaration changes.


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

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/zope.interface",
    "name": "zope.interface",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "interface, components, plugins",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/2a/bd/a30bf6df24480017171da4f52ee527a72c7a6450c86355011e0156e71723/zope.interface-6.3.tar.gz",
    "platform": null,
    "description": "====================\n ``zope.interface``\n====================\n\n.. image:: https://img.shields.io/pypi/v/zope.interface.svg\n    :target: https://pypi.python.org/pypi/zope.interface/\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.interface.svg\n        :target: https://pypi.org/project/zope.interface/\n        :alt: Supported Python versions\n\n.. image:: https://github.com/zopefoundation/zope.interface/actions/workflows/tests.yml/badge.svg\n        :target: https://github.com/zopefoundation/zope.interface/actions/workflows/tests.yml\n\n.. image:: https://readthedocs.org/projects/zopeinterface/badge/?version=latest\n        :target: https://zopeinterface.readthedocs.io/en/latest/\n        :alt: Documentation Status\n\nThis package is intended to be independently reusable in any Python\nproject. It is maintained by the `Zope Toolkit project\n<https://zopetoolkit.readthedocs.io/>`_.\n\nThis package provides an implementation of \"object interfaces\" for Python.\nInterfaces are a mechanism for labeling objects as conforming to a given\nAPI or contract. So, this package can be considered as implementation of\nthe `Design By Contract`_ methodology support in Python.\n\n.. _Design By Contract: http://en.wikipedia.org/wiki/Design_by_contract\n\nFor detailed documentation, please see https://zopeinterface.readthedocs.io/en/latest/\n\n=========\n Changes\n=========\n\n6.3 (2024-04-12)\n================\n\n- Add preliminary support for Python 3.13 as of 3.13a6.\n\n\n6.2 (2024-02-16)\n================\n\n- Add preliminary support for Python 3.13 as of 3.13a3.\n\n- Add support to use the pipe (``|``) syntax for ``typing.Union``.\n  (`#280 <https://github.com/zopefoundation/zope.interface/issues/280>`_)\n\n\n6.1 (2023-10-05)\n================\n\n- Build Linux binary wheels for Python 3.12.\n\n- Add support for Python 3.12.\n\n- Fix building of the docs for non-final versions.\n\n\n6.0 (2023-03-17)\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- Fix test deprecation warning on Python 3.11.\n\n- Add preliminary support for Python 3.12 as of 3.12a5.\n\n- Drop:\n\n    + `zope.interface.implements`\n    + `zope.interface.implementsOnly`\n    + `zope.interface.classProvides`\n\n\n5.5.2 (2022-11-17)\n==================\n\n- Add support for building arm64 wheels on macOS.\n\n\n5.5.1 (2022-11-03)\n==================\n\n- Add support for final Python 3.11 release.\n\n\n5.5.0 (2022-10-10)\n==================\n\n- Add support for Python 3.10 and 3.11 (as of 3.11.0rc2).\n\n- Add missing Trove classifier showing support for Python 3.9.\n\n- Add some more entries to ``zope.interface.interfaces.__all__``.\n\n- Disable unsafe math optimizations in C code.  See `pull request 262\n  <https://github.com/zopefoundation/zope.interface/pull/262>`_.\n\n\n5.4.0 (2021-04-15)\n==================\n\n- Make the C implementation of the ``__providedBy__`` descriptor stop\n  ignoring all errors raised when accessing the instance's\n  ``__provides__``. Now it behaves like the Python version and only\n  catches ``AttributeError``. The previous behaviour could lead to\n  crashing the interpreter in cases of recursion and errors. See\n  `issue 239 <https://github.com/zopefoundation/zope.interface/issues>`_.\n\n- Update the ``repr()`` and ``str()`` of various objects to be shorter\n  and more informative. In many cases, the ``repr()`` is now something\n  that can be evaluated to produce an equal object. For example, what\n  was previously printed as ``<implementedBy builtins.list>`` is now\n  shown as ``classImplements(list, IMutableSequence, IIterable)``. See\n  `issue 236 <https://github.com/zopefoundation/zope.interface/issues/236>`_.\n\n- Make ``Declaration.__add__`` (as in ``implementedBy(Cls) +\n  ISomething``) try harder to preserve a consistent resolution order\n  when the two arguments share overlapping pieces of the interface\n  inheritance hierarchy. Previously, the right hand side was always\n  put at the end of the resolution order, which could easily produce\n  invalid orders. See `issue 193\n  <https://github.com/zopefoundation/zope.interface/issues/193>`_.\n\n5.3.0 (2020-03-21)\n==================\n\n- No changes from 5.3.0a1\n\n\n5.3.0a1 (2021-03-18)\n====================\n\n- Improve the repr of ``zope.interface.Provides`` to remove ambiguity\n  about what is being provided. This is especially helpful diagnosing\n  IRO issues.\n\n- Allow subclasses of ``BaseAdapterRegistry`` (including\n  ``AdapterRegistry`` and ``VerifyingAdapterRegistry``) to have\n  control over the data structures. This allows persistent\n  implementations such as those based on ZODB to choose more scalable\n  options (e.g., BTrees instead of dicts). See `issue 224\n  <https://github.com/zopefoundation/zope.interface/issues/224>`_.\n\n- Fix a reference counting issue in ``BaseAdapterRegistry`` that could\n  lead to references to interfaces being kept around even when all\n  utilities/adapters/subscribers providing that interface have been\n  removed. This is mostly an issue for persistent implementations.\n  Note that this only corrects the issue moving forward, it does not\n  solve any already corrupted reference counts. See `issue 227\n  <https://github.com/zopefoundation/zope.interface/issues/227>`_.\n\n- Add the method ``BaseAdapterRegistry.rebuild()``. This can be used\n  to fix the reference counting issue mentioned above, as well as to\n  update the data structures when custom data types have changed.\n\n- Add the interface method ``IAdapterRegistry.subscribed()`` and\n  implementation ``BaseAdapterRegistry.subscribed()`` for querying\n  directly registered subscribers. See `issue 230\n  <https://github.com/zopefoundation/zope.interface/issues/230>`_.\n\n- Add the maintenance method\n  ``Components.rebuildUtilityRegistryFromLocalCache()``. Most users\n  will not need this, but it can be useful if the ``Components.utilities``\n  registry is suspected to be out of sync with the ``Components``\n  object itself (this might happen to persistent ``Components``\n  implementations in the face of bugs).\n\n- Fix the ``Provides`` and ``ClassProvides`` descriptors to stop\n  allowing redundant interfaces (those already implemented by the\n  underlying class or meta class) to produce an inconsistent\n  resolution order. This is similar to the change in ``@implementer``\n  in 5.1.0, and resolves inconsistent resolution orders with\n  ``zope.proxy`` and ``zope.location``. See `issue 207\n  <https://github.com/zopefoundation/zope.interface/issues/207>`_.\n\n5.2.0 (2020-11-05)\n==================\n\n- Add documentation section ``Persistency and Equality``\n  (`#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_).\n\n- Create arm64 wheels.\n\n- Add support for Python 3.9.\n\n\n5.1.2 (2020-10-01)\n==================\n\n- Make sure to call each invariant only once when validating invariants.\n  Previously, invariants could be called multiple times because when an\n  invariant is defined in an interface, it's found by in all interfaces\n  inheriting from that interface.  See `pull request 215\n  <https://github.com/zopefoundation/zope.interface/pull/215/>`_.\n\n5.1.1 (2020-09-30)\n==================\n\n- Fix the method definitions of ``IAdapterRegistry.subscribe``,\n  ``subscriptions`` and ``subscribers``. Previously, they all were\n  defined to accept a ``name`` keyword argument, but subscribers have\n  no names and the implementation of that interface did not accept\n  that argument. See `issue 208\n  <https://github.com/zopefoundation/zope.interface/issues/208>`_.\n\n- Fix a potential reference leak in the C optimizations. Previously,\n  applications that dynamically created unique ``Specification``\n  objects (e.g., used ``@implementer`` on dynamic classes) could\n  notice a growth of small objects over time leading to increased\n  garbage collection times. See `issue 216\n  <https://github.com/zopefoundation/zope.interface/issues/216>`_.\n\n  .. caution::\n\n     This leak could prevent interfaces used as the bases of\n     other interfaces from being garbage collected. Those interfaces\n     will now be collected.\n\n     One way in which this would manifest was that ``weakref.ref``\n     objects (and things built upon them, like\n     ``Weak[Key|Value]Dictionary``) would continue to have access to\n     the original object even if there were no other visible\n     references to Python and the original object *should* have been\n     collected. This could be especially problematic for the\n     ``WeakKeyDictionary`` when combined with dynamic or local\n     (created in the scope of a function) interfaces, since interfaces\n     are hashed based just on their name and module name. See the\n     linked issue for an example of a resulting ``KeyError``.\n\n     Note that such potential errors are not new, they are just once\n     again a possibility.\n\n5.1.0 (2020-04-08)\n==================\n\n- Make ``@implementer(*iface)`` and ``classImplements(cls, *iface)``\n  ignore redundant interfaces. If the class already implements an\n  interface through inheritance, it is no longer redeclared\n  specifically for *cls*. This solves many instances of inconsistent\n  resolution orders, while still allowing the interface to be declared\n  for readability and maintenance purposes. See `issue 199\n  <https://github.com/zopefoundation/zope.interface/issues/199>`_.\n\n- Remove all bare ``except:`` statements. Previously, when accessing\n  special attributes such as ``__provides__``, ``__providedBy__``,\n  ``__class__`` and ``__conform__``, this package wrapped such access\n  in a bare ``except:`` statement, meaning that many errors could pass\n  silently; typically this would result in a fallback path being taken\n  and sometimes (like with ``providedBy()``) the result would be\n  non-sensical. This is especially true when those attributes are\n  implemented with descriptors. Now, only ``AttributeError`` is\n  caught. This makes errors more obvious.\n\n  Obviously, this means that some exceptions will be propagated\n  differently than before. In particular, ``RuntimeError`` raised by\n  Acquisition in the case of circular containment will now be\n  propagated. Previously, when adapting such a broken object, a\n  ``TypeError`` would be the common result, but now it will be a more\n  informative ``RuntimeError``.\n\n  In addition, ZODB errors like ``POSKeyError`` could now be\n  propagated where previously they would ignored by this package.\n\n  See `issue 200 <https://github.com/zopefoundation/zope.interface/issues/200>`_.\n\n- Require that the second argument (*bases*) to ``InterfaceClass`` is\n  a tuple. This only matters when directly using ``InterfaceClass`` to\n  create new interfaces dynamically. Previously, an individual\n  interface was allowed, but did not work correctly. Now it is\n  consistent with ``type`` and requires a tuple.\n\n- Let interfaces define custom ``__adapt__`` methods. This implements\n  the other side of the :pep:`246` adaptation protocol: objects being\n  adapted could already implement ``__conform__`` if they know about\n  the interface, and now interfaces can implement ``__adapt__`` if\n  they know about particular objects. There is no performance penalty\n  for interfaces that do not supply custom ``__adapt__`` methods.\n\n  This includes the ability to add new methods, or override existing\n  interface methods using the new ``@interfacemethod`` decorator.\n\n  See `issue 3 <https://github.com/zopefoundation/zope.interface/issues/3>`_.\n\n- Make the internal singleton object returned by APIs like\n  ``implementedBy`` and ``directlyProvidedBy`` for objects that\n  implement or provide no interfaces more immutable. Previously an\n  internal cache could be mutated. See `issue 204\n  <https://github.com/zopefoundation/zope.interface/issues/204>`_.\n\n5.0.2 (2020-03-30)\n==================\n\n- Ensure that objects that implement no interfaces (such as direct\n  subclasses of ``object``) still include ``Interface`` itself in\n  their ``__iro___`` and ``__sro___``. This fixes adapter registry\n  lookups for such objects when the adapter is registered for\n  ``Interface``. See `issue 197\n  <https://github.com/zopefoundation/zope.interface/issues/197>`_.\n\n\n5.0.1 (2020-03-21)\n==================\n\n- Ensure the resolution order for ``InterfaceClass`` is consistent.\n  See `issue 192 <https://github.com/zopefoundation/zope.interface/issues/192>`_.\n\n- Ensure the resolution order for ``collections.OrderedDict`` is\n  consistent on CPython 2. (It was already consistent on Python 3 and PyPy).\n\n- Fix the handling of the ``ZOPE_INTERFACE_STRICT_IRO`` environment\n  variable. Previously, ``ZOPE_INTERFACE_STRICT_RO`` was read, in\n  contrast with the documentation. See `issue 194\n  <https://github.com/zopefoundation/zope.interface/issues/194>`_.\n\n\n5.0.0 (2020-03-19)\n==================\n\n- Make an internal singleton object returned by APIs like\n  ``implementedBy`` and ``directlyProvidedBy`` immutable. Previously,\n  it was fully mutable and allowed changing its ``__bases___``. That\n  could potentially lead to wrong results in pathological corner\n  cases. See `issue 158\n  <https://github.com/zopefoundation/zope.interface/issues/158>`_.\n\n- Support the ``PURE_PYTHON`` environment variable at runtime instead\n  of just at wheel build time. A value of 0 forces the C extensions to\n  be used (even on PyPy) failing if they aren't present. Any other\n  value forces the Python implementation to be used, ignoring the C\n  extensions. See `PR 151 <https://github.com/zopefoundation/zope.interface/pull/151>`_.\n\n- Cache the result of ``__hash__`` method in ``InterfaceClass`` as a\n  speed optimization. The method is called very often (i.e several\n  hundred thousand times during Plone 5.2 startup). Because the hash value never\n  changes it can be cached. This improves test performance from 0.614s\n  down to 0.575s (1.07x faster). In a real world Plone case a reindex\n  index came down from 402s to 320s (1.26x faster). See `PR 156\n  <https://github.com/zopefoundation/zope.interface/pull/156>`_.\n\n- Change the C classes ``SpecificationBase`` and its subclass\n  ``ClassProvidesBase`` to store implementation attributes in their structures\n  instead of their instance dictionaries. This eliminates the use of\n  an undocumented private C API function, and helps make some\n  instances require less memory. See `PR 154 <https://github.com/zopefoundation/zope.interface/pull/154>`_.\n\n- Reduce memory usage in other ways based on observations of usage\n  patterns in Zope (3) and Plone code bases.\n\n  - Specifications with no dependents are common (more than 50%) so\n    avoid allocating a ``WeakKeyDictionary`` unless we need it.\n  - Likewise, tagged values are relatively rare, so don't allocate a\n    dictionary to hold them until they are used.\n  - Use ``__slots___`` or the C equivalent ``tp_members`` in more\n    common places. Note that this removes the ability to set arbitrary\n    instance variables on certain objects.\n    See `PR 155 <https://github.com/zopefoundation/zope.interface/pull/155>`_.\n\n  The changes in this release resulted in a 7% memory reduction after\n  loading about 6,000 modules that define about 2,200 interfaces.\n\n  .. caution::\n\n     Details of many private attributes have changed, and external use\n     of those private attributes may break. In particular, the\n     lifetime and default value of ``_v_attrs`` has changed.\n\n- Remove support for hashing uninitialized interfaces. This could only\n  be done by subclassing ``InterfaceClass``. This has generated a\n  warning since it was first added in 2011 (3.6.5). Please call the\n  ``InterfaceClass`` constructor or otherwise set the appropriate\n  fields in your subclass before attempting to hash or sort it. See\n  `issue 157 <https://github.com/zopefoundation/zope.interface/issues/157>`_.\n\n- Remove unneeded override of the ``__hash__`` method from\n  ``zope.interface.declarations.Implements``. Watching a reindex index\n  process in ZCatalog with on a Py-Spy after 10k samples the time for\n  ``.adapter._lookup`` was reduced from 27.5s to 18.8s (~1.5x faster).\n  Overall reindex index time shrunk from 369s to 293s (1.26x faster).\n  See `PR 161\n  <https://github.com/zopefoundation/zope.interface/pull/161>`_.\n\n- Make the Python implementation closer to the C implementation by\n  ignoring all exceptions, not just ``AttributeError``, during (parts\n  of) interface adaptation. See `issue 163\n  <https://github.com/zopefoundation/zope.interface/issues/163>`_.\n\n- Micro-optimization in ``.adapter._lookup`` , ``.adapter._lookupAll``\n  and ``.adapter._subscriptions``: By loading ``components.get`` into\n  a local variable before entering the loop a bytcode \"LOAD_FAST 0\n  (components)\" in the loop can be eliminated. In Plone, while running\n  all tests, average speedup of the \"owntime\" of ``_lookup`` is ~5x.\n  See `PR 167\n  <https://github.com/zopefoundation/zope.interface/pull/167>`_.\n\n- Add ``__all__`` declarations to all modules. This helps tools that\n  do auto-completion and documentation and results in less cluttered\n  results. Wildcard (\"*\") are not recommended and may be affected. See\n  `issue 153\n  <https://github.com/zopefoundation/zope.interface/issues/153>`_.\n\n- Fix ``verifyClass`` and ``verifyObject`` for builtin types like\n  ``dict`` that have methods taking an optional, unnamed argument with\n  no default value like ``dict.pop``. On PyPy3, the verification is\n  strict, but on PyPy2 (as on all versions of CPython) those methods\n  cannot be verified and are ignored. See `issue 118\n  <https://github.com/zopefoundation/zope.interface/issues/118>`_.\n\n- Update the common interfaces ``IEnumerableMapping``,\n  ``IExtendedReadMapping``, ``IExtendedWriteMapping``,\n  ``IReadSequence`` and ``IUniqueMemberWriteSequence`` to no longer\n  require methods that were removed from Python 3 on Python 3, such as\n  ``__setslice___``. Now, ``dict``, ``list`` and ``tuple`` properly\n  verify as ``IFullMapping``, ``ISequence`` and ``IReadSequence,``\n  respectively on all versions of Python.\n\n- Add human-readable ``__str___`` and ``__repr___`` to ``Attribute``\n  and ``Method``. These contain the name of the defining interface\n  and the attribute. For methods, it also includes the signature.\n\n- Change the error strings raised by ``verifyObject`` and\n  ``verifyClass``. They now include more human-readable information\n  and exclude extraneous lines and spaces. See `issue 170\n  <https://github.com/zopefoundation/zope.interface/issues/170>`_.\n\n  .. caution:: This will break consumers (such as doctests) that\n               depended on the exact error messages.\n\n- Make ``verifyObject`` and ``verifyClass`` report all errors, if the\n  candidate object has multiple detectable violations. Previously they\n  reported only the first error. See `issue\n  <https://github.com/zopefoundation/zope.interface/issues/171>`_.\n\n  Like the above, this will break consumers depending on the exact\n  output of error messages if more than one error is present.\n\n- Add ``zope.interface.common.collections``,\n  ``zope.interface.common.numbers``, and ``zope.interface.common.io``.\n  These modules define interfaces based on the ABCs defined in the\n  standard library ``collections.abc``, ``numbers`` and ``io``\n  modules, respectively. Importing these modules will make the\n  standard library concrete classes that are registered with those\n  ABCs declare the appropriate interface. See `issue 138\n  <https://github.com/zopefoundation/zope.interface/issues/138>`_.\n\n- Add ``zope.interface.common.builtins``. This module defines\n  interfaces of common builtin types, such as ``ITextString`` and\n  ``IByteString``, ``IDict``, etc. These interfaces extend the\n  appropriate interfaces from ``collections`` and ``numbers``, and the\n  standard library classes implement them after importing this module.\n  This is intended as a replacement for third-party packages like\n  `dolmen.builtins <https://pypi.org/project/dolmen.builtins/>`_.\n  See `issue 138 <https://github.com/zopefoundation/zope.interface/issues/138>`_.\n\n- Make ``providedBy()`` and ``implementedBy()`` respect ``super``\n  objects. For instance, if class ``Derived`` implements ``IDerived``\n  and extends ``Base`` which in turn implements ``IBase``, then\n  ``providedBy(super(Derived, derived))`` will return ``[IBase]``.\n  Previously it would have returned ``[IDerived]`` (in general, it\n  would previously have returned whatever would have been returned\n  without ``super``).\n\n  Along with this change, adapter registries will unpack ``super``\n  objects into their ``__self___`` before passing it to the factory.\n  Together, this means that ``component.getAdapter(super(Derived,\n  self), ITarget)`` is now meaningful.\n\n  See `issue 11 <https://github.com/zopefoundation/zope.interface/issues/11>`_.\n\n- Fix a potential interpreter crash in the low-level adapter\n  registry lookup functions. See issue 11.\n\n- Adopt Python's standard `C3 resolution order\n  <https://www.python.org/download/releases/2.3/mro/>`_ to compute the\n  ``__iro__`` and ``__sro__`` of interfaces, with tweaks to support\n  additional cases that are common in interfaces but disallowed for\n  Python classes. Previously, an ad-hoc ordering that made no\n  particular guarantees was used.\n\n  This has many beneficial properties, including the fact that base\n  interface and base classes tend to appear near the end of the\n  resolution order instead of the beginning. The resolution order in\n  general should be more predictable and consistent.\n\n  .. caution::\n     In some cases, especially with complex interface inheritance\n     trees or when manually providing or implementing interfaces, the\n     resulting IRO may be quite different. This may affect adapter\n     lookup.\n\n  The C3 order enforces some constraints in order to be able to\n  guarantee a sensible ordering. Older versions of zope.interface did\n  not impose similar constraints, so it was possible to create\n  interfaces and declarations that are inconsistent with the C3\n  constraints. In that event, zope.interface will still produce a\n  resolution order equal to the old order, but it won't be guaranteed\n  to be fully C3 compliant. In the future, strict enforcement of C3\n  order may be the default.\n\n  A set of environment variables and module constants allows\n  controlling several aspects of this new behaviour. It is possible to\n  request warnings about inconsistent resolution orders encountered,\n  and even to forbid them. Differences between the C3 resolution order\n  and the previous order can be logged, and, in extreme cases, the\n  previous order can still be used (this ability will be removed in\n  the future). For details, see the documentation for\n  ``zope.interface.ro``.\n\n- Make inherited tagged values in interfaces respect the resolution\n  order (``__iro__``), as method and attribute lookup does. Previously\n  tagged values could give inconsistent results. See `issue 190\n  <https://github.com/zopefoundation/zope.interface/issues/190>`_.\n\n- Add ``getDirectTaggedValue`` (and related methods) to interfaces to\n  allow accessing tagged values irrespective of inheritance. See\n  `issue 190\n  <https://github.com/zopefoundation/zope.interface/issues/190>`_.\n\n- Ensure that ``Interface`` is always the last item in the ``__iro__``\n  and ``__sro__``. This is usually the case, but if classes that do\n  not implement any interfaces are part of a class inheritance\n  hierarchy, ``Interface`` could be assigned too high a priority.\n  See `issue 8 <https://github.com/zopefoundation/zope.interface/issues/8>`_.\n\n- Implement sorting, equality, and hashing in C for ``Interface``\n  objects. In micro benchmarks, this makes those operations 40% to 80%\n  faster. This translates to a 20% speed up in querying adapters.\n\n  Note that this changes certain implementation details. In\n  particular, ``InterfaceClass`` now has a non-default metaclass, and\n  it is enforced that ``__module__`` in instances of\n  ``InterfaceClass`` is read-only.\n\n  See `PR 183 <https://github.com/zopefoundation/zope.interface/pull/183>`_.\n\n\n4.7.2 (2020-03-10)\n==================\n\n- Remove deprecated use of setuptools features.  See `issue 30\n  <https://github.com/zopefoundation/zope.interface/issues/30>`_.\n\n\n4.7.1 (2019-11-11)\n==================\n\n- Use Python 3 syntax in the documentation.  See `issue 119\n  <https://github.com/zopefoundation/zope.interface/issues/119>`_.\n\n\n4.7.0 (2019-11-11)\n==================\n\n- Drop support for Python 3.4.\n\n- Change ``queryTaggedValue``, ``getTaggedValue``,\n  ``getTaggedValueTags`` in interfaces. They now include inherited\n  values by following ``__bases__``. See `PR 144\n  <https://github.com/zopefoundation/zope.interface/pull/144>`_.\n\n  .. caution:: This may be a breaking change.\n\n- Add support for Python 3.8.\n\n\n4.6.0 (2018-10-23)\n==================\n\n- Add support for Python 3.7\n\n- Fix ``verifyObject`` for class objects with staticmethods on\n  Python 3. See `issue 126\n  <https://github.com/zopefoundation/zope.interface/issues/126>`_.\n\n\n4.5.0 (2018-04-19)\n==================\n\n- Drop support for 3.3, avoid accidental dependence breakage via setup.py.\n  See `PR 110 <https://github.com/zopefoundation/zope.interface/pull/110>`_.\n- Allow registering and unregistering instance methods as listeners.\n  See `issue 12 <https://github.com/zopefoundation/zope.interface/issues/12>`_\n  and `PR 102 <https://github.com/zopefoundation/zope.interface/pull/102>`_.\n- Synchronize and simplify zope/__init__.py. See `issue 114\n  <https://github.com/zopefoundation/zope.interface/issues/114>`_\n\n\n4.4.3 (2017-09-22)\n==================\n\n- Avoid exceptions when the ``__annotations__`` attribute is added to\n  interface definitions with Python 3.x type hints. See `issue 98\n  <https://github.com/zopefoundation/zope.interface/issues/98>`_.\n- Fix the possibility of a rare crash in the C extension when\n  deallocating items. See `issue 100\n  <https://github.com/zopefoundation/zope.interface/issues/100>`_.\n\n\n4.4.2 (2017-06-14)\n==================\n\n- Fix a regression storing\n  ``zope.component.persistentregistry.PersistentRegistry`` instances.\n  See `issue 85 <https://github.com/zopefoundation/zope.interface/issues/85>`_.\n\n- Fix a regression that could lead to the utility registration cache\n  of ``Components`` getting out of sync. See `issue 93\n  <https://github.com/zopefoundation/zope.interface/issues/93>`_.\n\n4.4.1 (2017-05-13)\n==================\n\n- Simplify the caching of utility-registration data. In addition to\n  simplification, avoids spurious test failures when checking for\n  leaks in tests with persistent registries. See `pull 84\n  <https://github.com/zopefoundation/zope.interface/pull/84>`_.\n\n- Raise ``ValueError`` when non-text names are passed to adapter registry\n  methods:  prevents corruption of lookup caches.\n\n4.4.0 (2017-04-21)\n==================\n\n- Avoid a warning from the C compiler.\n  (https://github.com/zopefoundation/zope.interface/issues/71)\n\n- Add support for Python 3.6.\n\n4.3.3 (2016-12-13)\n==================\n\n- Correct typos and ReST formatting errors in documentation.\n\n- Add API documentation for the adapter registry.\n\n- Ensure that the ``LICENSE.txt`` file is included in built wheels.\n\n- Fix C optimizations broken on Py3k.  See the Python bug at:\n  http://bugs.python.org/issue15657\n  (https://github.com/zopefoundation/zope.interface/issues/60)\n\n\n4.3.2 (2016-09-05)\n==================\n\n- Fix equality testing of ``implementedBy`` objects and proxies.\n  (https://github.com/zopefoundation/zope.interface/issues/55)\n\n\n4.3.1 (2016-08-31)\n==================\n\n- Support Components subclasses that are not hashable.\n  (https://github.com/zopefoundation/zope.interface/issues/53)\n\n\n4.3.0 (2016-08-31)\n==================\n\n- Add the ability to sort the objects returned by ``implementedBy``.\n  This is compatible with the way interface classes sort so they can\n  be used together in ordered containers like BTrees.\n  (https://github.com/zopefoundation/zope.interface/issues/42)\n\n- Make ``setuptools`` a hard dependency of ``setup.py``.\n  (https://github.com/zopefoundation/zope.interface/issues/13)\n\n- Change a linear algorithm (O(n)) in ``Components.registerUtility`` and\n  ``Components.unregisterUtility`` into a dictionary lookup (O(1)) for\n  hashable components. This substantially improves the time taken to\n  manipulate utilities in large registries at the cost of some\n  additional memory usage. (https://github.com/zopefoundation/zope.interface/issues/46)\n\n\n4.2.0 (2016-06-10)\n==================\n\n- Add support for Python 3.5\n\n- Drop support for Python 2.6 and 3.2.\n\n\n4.1.3 (2015-10-05)\n==================\n\n- Fix installation without a C compiler on Python 3.5\n  (https://github.com/zopefoundation/zope.interface/issues/24).\n\n\n4.1.2 (2014-12-27)\n==================\n\n- Add support for PyPy3.\n\n- Remove unittest assertions deprecated in Python3.x.\n\n- Add ``zope.interface.document.asReStructuredText``, which formats the\n  generated text for an interface using ReST double-backtick markers.\n\n\n4.1.1 (2014-03-19)\n==================\n\n- Add support for Python 3.4.\n\n\n4.1.0 (2014-02-05)\n==================\n\n- Update ``boostrap.py`` to version 2.2.\n\n- Add ``@named(name)`` declaration, that specifies the component name, so it\n  does not have to be passed in during registration.\n\n\n4.0.5 (2013-02-28)\n==================\n\n- Fix a bug where a decorated method caused false positive failures on\n  ``verifyClass()``.\n\n\n4.0.4 (2013-02-21)\n==================\n\n- Fix a bug that was revealed by porting zope.traversing. During a loop, the\n  loop body modified a weakref dict causing a ``RuntimeError`` error.\n\n4.0.3 (2012-12-31)\n==================\n\n- Fleshed out PyPI Trove classifiers.\n\n4.0.2 (2012-11-21)\n==================\n\n- Add support for Python 3.3.\n\n- Restored ability to install the package in the absence of ``setuptools``.\n\n- LP #1055223:  Fix test which depended on dictionary order and failed randomly\n  in Python 3.3.\n\n4.0.1 (2012-05-22)\n==================\n\n- Drop explicit ``DeprecationWarnings`` for \"class advice\" APIS (these\n  APIs are still deprecated under Python 2.x, and still raise an exception\n  under Python 3.x, but no longer cause a warning to be emitted under\n  Python 2.x).\n\n4.0.0 (2012-05-16)\n==================\n\n- Automated build of Sphinx HTML docs and running doctest snippets via tox.\n\n- Deprecate the \"class advice\" APIs from ``zope.interface.declarations``:\n  ``implements``, ``implementsOnly``, and ``classProvides``.  In their place,\n  prefer the equivalent class decorators: ``@implementer``,\n  ``@implementer_only``, and ``@provider``.  Code which uses the deprecated\n  APIs will not work as expected under Py3k.\n\n- Remove use of '2to3' and associated fixers when installing under Py3k.\n  The code is now in a \"compatible subset\" which supports Python 2.6, 2.7,\n  and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language\n  spec).\n\n- Drop explicit support for Python 2.4 / 2.5 / 3.1.\n\n- Add support for PyPy.\n\n- Add support for continuous integration using ``tox`` and ``jenkins``.\n\n- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs\n  ``nose`` and ``coverage``).\n\n- Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).\n\n- Replace all unittest coverage previously accomplished via doctests with\n  unittests.  The doctests have been moved into a ``docs`` section, managed\n  as a Sphinx collection.\n\n- LP #910987:  Ensure that the semantics of the ``lookup`` method of\n  ``zope.interface.adapter.LookupBase`` are the same in both the C and\n  Python implementations.\n\n- LP #900906:  Avoid exceptions due to tne new ``__qualname__`` attribute\n  added in Python 3.3 (see PEP 3155 for rationale).  Thanks to Antoine\n  Pitrou for the patch.\n\n3.8.0 (2011-09-22)\n==================\n\n- New module ``zope.interface.registry``.  This is code moved from\n  ``zope.component.registry`` which implements a basic nonperistent component\n  registry as ``zope.interface.registry.Components``.  This class was moved\n  from ``zope.component`` to make porting systems (such as Pyramid) that rely\n  only on a basic component registry to Python 3 possible without needing to\n  port the entirety of the ``zope.component`` package.  Backwards\n  compatibility import shims have been left behind in ``zope.component``, so\n  this change will not break any existing code.\n\n- New ``tests_require`` dependency: ``zope.event`` to test events sent by\n  Components implementation.  The ``zope.interface`` package does not have a\n  hard dependency on ``zope.event``, but if ``zope.event`` is importable, it\n  will send component registration events when methods of an instance of\n  ``zope.interface.registry.Components`` are called.\n\n- New interfaces added to support ``zope.interface.registry.Components``\n  addition: ``ComponentLookupError``, ``Invalid``, ``IObjectEvent``,\n  ``ObjectEvent``, ``IComponentLookup``, ``IRegistration``,\n  ``IUtilityRegistration``, ``IAdapterRegistration``,\n  ``ISubscriptionAdapterRegistration``, ``IHandlerRegistration``,\n  ``IRegistrationEvent``, ``RegistrationEvent``, ``IRegistered``,\n  ``Registered``, ``IUnregistered``, ``Unregistered``,\n  ``IComponentRegistry``, and ``IComponents``.\n\n- No longer Python 2.4 compatible (tested under 2.5, 2.6, 2.7, and 3.2).\n\n3.7.0 (2011-08-13)\n==================\n\n- Move changes from 3.6.2 - 3.6.5 to a new 3.7.x release line.\n\n3.6.7 (2011-08-20)\n==================\n\n- Fix sporadic failures on x86-64 platforms in tests of rich comparisons\n  of interfaces.\n\n3.6.6 (2011-08-13)\n==================\n\n- LP #570942:  Now correctly compare interfaces  from different modules but\n  with the same names.\n\n  N.B.: This is a less intrusive / destabilizing fix than the one applied in\n  3.6.3:  we only fix the underlying cmp-alike function, rather than adding\n  the other \"rich comparison\" functions.\n\n- Revert to software as released with 3.6.1 for \"stable\" 3.6 release branch.\n\n3.6.5 (2011-08-11)\n==================\n\n- LP #811792:  work around buggy behavior in some subclasses of\n  ``zope.interface.interface.InterfaceClass``, which invoke ``__hash__``\n  before initializing ``__module__`` and ``__name__``.  The workaround\n  returns a fixed constant hash in such cases, and issues a ``UserWarning``.\n\n- LP #804832:  Under PyPy, ``zope.interface`` should not build its C\n  extension.  Also, prevent attempting to build it under Jython.\n\n- Add a tox.ini for easier xplatform testing.\n\n- Fix testing deprecation warnings issued when tested under Py3K.\n\n3.6.4 (2011-07-04)\n==================\n\n- LP 804951:  InterfaceClass instances were unhashable under Python 3.x.\n\n3.6.3 (2011-05-26)\n==================\n\n- LP #570942:  Now correctly compare interfaces  from different modules but\n  with the same names.\n\n3.6.2 (2011-05-17)\n==================\n\n- Moved detailed documentation out-of-line from PyPI page, linking instead to\n  http://docs.zope.org/zope.interface .\n\n- Fixes for small issues when running tests under Python 3.2 using\n  ``zope.testrunner``.\n\n- LP # 675064:  Specify return value type for C optimizations module init\n  under Python 3:  undeclared value caused warnings, and segfaults on some\n  64 bit architectures.\n\n- setup.py now raises RuntimeError if you don't have Distutils installed when\n  running under Python 3.\n\n3.6.1 (2010-05-03)\n==================\n\n- A non-ASCII character in the changelog made 3.6.0 uninstallable on\n  Python 3 systems with another default encoding than UTF-8.\n\n- Fix compiler warnings under GCC 4.3.3.\n\n3.6.0 (2010-04-29)\n==================\n\n- LP #185974:  Clear the cache used by ``Specificaton.get`` inside\n  ``Specification.changed``.  Thanks to Jacob Holm for the patch.\n\n- Add support for Python 3.1. Contributors:\n\n    Lennart Regebro\n    Martin v Loewis\n    Thomas Lotze\n    Wolfgang Schnerring\n\n  The 3.1 support is completely backwards compatible. However, the implements\n  syntax used under Python 2.X does not work under 3.X, since it depends on\n  how metaclasses are implemented and this has changed. Instead it now supports\n  a decorator syntax (also under Python 2.X)::\n\n    class Foo:\n        implements(IFoo)\n        ...\n\n  can now also be written::\n\n    @implementer(IFoo):\n    class Foo:\n        ...\n\n  There are 2to3 fixers available to do this change automatically in the\n  zope.fixers package.\n\n- Python 2.3 is no longer supported.\n\n\n3.5.4 (2009-12-23)\n==================\n\n- Use the standard Python doctest module instead of zope.testing.doctest, which\n  has been deprecated.\n\n\n3.5.3 (2009-12-08)\n==================\n\n- Fix an edge case: make providedBy() work when a class has '__provides__' in\n  its __slots__ (see http://thread.gmane.org/gmane.comp.web.zope.devel/22490)\n\n\n3.5.2 (2009-07-01)\n==================\n\n- BaseAdapterRegistry.unregister, unsubscribe: Remove empty portions of\n  the data structures when something is removed.  This avoids leaving\n  references to global objects (interfaces) that may be slated for\n  removal from the calling application.\n\n\n3.5.1 (2009-03-18)\n==================\n\n- verifyObject: use getattr instead of hasattr to test for object attributes\n  in order to let exceptions other than AttributeError raised by properties\n  propagate to the caller\n\n- Add Sphinx-based documentation building to the package buildout\n  configuration. Use the ``bin/docs`` command after buildout.\n\n- Improve package description a bit. Unify changelog entries formatting.\n\n- Change package's mailing list address to zope-dev at zope.org as\n  zope3-dev at zope.org is now retired.\n\n\n3.5.0 (2008-10-26)\n==================\n\n- Fix declaration of _zope_interface_coptimizations, it's not a top level\n  package.\n\n- Add a DocTestSuite for odd.py module, so their tests are run.\n\n- Allow to bootstrap on Jython.\n\n- Fix https://bugs.launchpad.net/zope3/3.3/+bug/98388: ISpecification\n  was missing a declaration for __iro__.\n\n- Add optional code optimizations support, which allows the building\n  of C code optimizations to fail (Jython).\n\n- Replace `_flatten` with a non-recursive implementation, effectively making\n  it 3x faster.\n\n\n3.4.1 (2007-10-02)\n==================\n\n- Fix a setup bug that prevented installation from source on systems\n  without setuptools.\n\n\n3.4.0 (2007-07-19)\n==================\n\n- Final release for 3.4.0.\n\n\n3.4.0b3 (2007-05-22)\n====================\n\n\n- When checking whether an object is already registered, use identity\n  comparison, to allow adding registering with picky custom comparison methods.\n\n\n3.3.0.1 (2007-01-03)\n====================\n\n- Made a reference to OverflowWarning, which disappeared in Python\n  2.5, conditional.\n\n\n3.3.0 (2007/01/03)\n==================\n\nNew Features\n------------\n\n- Refactor the adapter-lookup algorithim to make it much simpler and faster.\n\n  Also, implement more of the adapter-lookup logic in C, making\n  debugging of application code easier, since there is less\n  infrastructre code to step through.\n\n- Treat objects without interface declarations as if they\n  declared that they provide ``zope.interface.Interface``.\n\n- Add a number of richer new adapter-registration interfaces\n  that provide greater control and introspection.\n\n- Add a new interface decorator to zope.interface that allows the\n  setting of tagged values on an interface at definition time (see\n  zope.interface.taggedValue).\n\nBug Fixes\n---------\n\n- A bug in multi-adapter lookup sometimes caused incorrect adapters to\n  be returned.\n\n\n3.2.0.2 (2006-04-15)\n====================\n\n- Fix packaging bug:  'package_dir' must be a *relative* path.\n\n\n3.2.0.1 (2006-04-14)\n====================\n\n- Packaging change:  suppress inclusion of 'setup.cfg' in 'sdist' builds.\n\n\n3.2.0 (2006-01-05)\n==================\n\n- Corresponds to the version of the zope.interface package shipped as part of\n  the Zope 3.2.0 release.\n\n\n3.1.0 (2005-10-03)\n==================\n\n- Corresponds to the version of the zope.interface package shipped as part of\n  the Zope 3.1.0 release.\n\n- Made attribute resolution order consistent with component lookup order,\n  i.e. new-style class MRO semantics.\n\n- Deprecate 'isImplementedBy' and 'isImplementedByInstancesOf' APIs in\n  favor of 'implementedBy' and 'providedBy'.\n\n\n3.0.1 (2005-07-27)\n==================\n\n- Corresponds to the version of the zope.interface package shipped as part of\n  the Zope X3.0.1 release.\n\n- Fix a bug reported by James Knight, which caused adapter registries\n  to fail occasionally to reflect declaration changes.\n\n\n3.0.0 (2004-11-07)\n==================\n\n- Corresponds to the version of the zope.interface package shipped as part of\n  the Zope X3.0.0 release.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Interfaces for Python",
    "version": "6.3",
    "project_urls": {
        "Homepage": "https://github.com/zopefoundation/zope.interface"
    },
    "split_keywords": [
        "interface",
        " components",
        " plugins"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f275ace101216b1b9cffe2808cce5b5e8e7f40865319c27adab4076562914223",
                "md5": "a7d9665b1cdf7c5cf541b779c4a49e59",
                "sha256": "2f32010ffb87759c6a3ad1c65ed4d2e38e51f6b430a1ca11cee901ec2b42e021"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7d9665b1cdf7c5cf541b779c4a49e59",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 202679,
            "upload_time": "2024-04-12T15:13:37",
            "upload_time_iso_8601": "2024-04-12T15:13:37.179353Z",
            "url": "https://files.pythonhosted.org/packages/f2/75/ace101216b1b9cffe2808cce5b5e8e7f40865319c27adab4076562914223/zope.interface-6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9894110444b334e2b8d998e165f782f4fa4063a2892e307f650862572f25c020",
                "md5": "e36c00b1c7b90568de8d1f95998a8b68",
                "sha256": "e78a183a3c2f555c2ad6aaa1ab572d1c435ba42f1dc3a7e8c82982306a19b785"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e36c00b1c7b90568de8d1f95998a8b68",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 202783,
            "upload_time": "2024-04-12T15:13:39",
            "upload_time_iso_8601": "2024-04-12T15:13:39.771766Z",
            "url": "https://files.pythonhosted.org/packages/98/94/110444b334e2b8d998e165f782f4fa4063a2892e307f650862572f25c020/zope.interface-6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "759161e87958a4d17af766888ae7d2bc0425d4bd68223ad1216ba18f033b46fa",
                "md5": "ef518d6273855c0cccc5a69aea3a064f",
                "sha256": "afa0491a9f154cf8519a02026dc85a416192f4cb1efbbf32db4a173ba28b289a"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef518d6273855c0cccc5a69aea3a064f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 247781,
            "upload_time": "2024-04-12T15:33:04",
            "upload_time_iso_8601": "2024-04-12T15:33:04.555484Z",
            "url": "https://files.pythonhosted.org/packages/75/91/61e87958a4d17af766888ae7d2bc0425d4bd68223ad1216ba18f033b46fa/zope.interface-6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5890ffd7af774f968c2e19cfef6bd155b326039dc4471c837d56649d2308c9d",
                "md5": "72059620d66f95f36adc11323c0c2f8b",
                "sha256": "62e32f02b3f26204d9c02c3539c802afc3eefb19d601a0987836ed126efb1f21"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "72059620d66f95f36adc11323c0c2f8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 241948,
            "upload_time": "2024-04-12T15:14:01",
            "upload_time_iso_8601": "2024-04-12T15:14:01.550346Z",
            "url": "https://files.pythonhosted.org/packages/d5/89/0ffd7af774f968c2e19cfef6bd155b326039dc4471c837d56649d2308c9d/zope.interface-6.3-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": "448f1b23b127dc0f0e40de3d7663670bcf4224819f5fdf103bf1ad24ada51540",
                "md5": "681ba9d8e92150789bc7b7f08e932c86",
                "sha256": "c40df4aea777be321b7e68facb901bc67317e94b65d9ab20fb96e0eb3c0b60a1"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "681ba9d8e92150789bc7b7f08e932c86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 247330,
            "upload_time": "2024-04-12T15:14:41",
            "upload_time_iso_8601": "2024-04-12T15:14:41.564192Z",
            "url": "https://files.pythonhosted.org/packages/44/8f/1b23b127dc0f0e40de3d7663670bcf4224819f5fdf103bf1ad24ada51540/zope.interface-6.3-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": "355574a7ca1ee40c085594d0b10056f37c0738bfcb518506f7b7e8720e2be76b",
                "md5": "1e14468bad62cb9e4b3ad7ad917b2a18",
                "sha256": "46034be614d1f75f06e7dcfefba21d609b16b38c21fc912b01a99cb29e58febb"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1e14468bad62cb9e4b3ad7ad917b2a18",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 204420,
            "upload_time": "2024-04-12T15:19:48",
            "upload_time_iso_8601": "2024-04-12T15:19:48.715273Z",
            "url": "https://files.pythonhosted.org/packages/35/55/74a7ca1ee40c085594d0b10056f37c0738bfcb518506f7b7e8720e2be76b/zope.interface-6.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1ff37b37e408908f6d949cea8b01969204fc76dd0b85eabc41ff8ca3306a940",
                "md5": "932f3e2155023f426e60c1c35ba95b72",
                "sha256": "600101f43a7582d5b9504a7c629a1185a849ce65e60fca0f6968dfc4b76b6d39"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "932f3e2155023f426e60c1c35ba95b72",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 202694,
            "upload_time": "2024-04-12T15:14:27",
            "upload_time_iso_8601": "2024-04-12T15:14:27.446468Z",
            "url": "https://files.pythonhosted.org/packages/c1/ff/37b37e408908f6d949cea8b01969204fc76dd0b85eabc41ff8ca3306a940/zope.interface-6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f53db5562aa226faec1705705bd57fc98e87eb857ab20efa0772734b88bd2fce",
                "md5": "ba7be39a600069014263b9186324ff57",
                "sha256": "4d6b229f5e1a6375f206455cc0a63a8e502ed190fe7eb15e94a312dc69d40299"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba7be39a600069014263b9186324ff57",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 202786,
            "upload_time": "2024-04-12T15:14:29",
            "upload_time_iso_8601": "2024-04-12T15:14:29.356556Z",
            "url": "https://files.pythonhosted.org/packages/f5/3d/b5562aa226faec1705705bd57fc98e87eb857ab20efa0772734b88bd2fce/zope.interface-6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "350c2442f1d7fd3fc2f4179892c161f79e7d3dd5dd483c79a57c3f6355675374",
                "md5": "3804c8af62c876dacb638eec297f60b9",
                "sha256": "10cde8dc6b2fd6a1d0b5ca4be820063e46ddba417ab82bcf55afe2227337b130"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3804c8af62c876dacb638eec297f60b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 249832,
            "upload_time": "2024-04-12T15:33:08",
            "upload_time_iso_8601": "2024-04-12T15:33:08.616125Z",
            "url": "https://files.pythonhosted.org/packages/35/0c/2442f1d7fd3fc2f4179892c161f79e7d3dd5dd483c79a57c3f6355675374/zope.interface-6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "554179c9014351824b13db0c37808333816401e87d473d268f137de172bacf5a",
                "md5": "7784fd64565ac3335fa2ee1e71a7db0b",
                "sha256": "40aa8c8e964d47d713b226c5baf5f13cdf3a3169c7a2653163b17ff2e2334d10"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7784fd64565ac3335fa2ee1e71a7db0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 243984,
            "upload_time": "2024-04-12T15:14:04",
            "upload_time_iso_8601": "2024-04-12T15:14:04.123856Z",
            "url": "https://files.pythonhosted.org/packages/55/41/79c9014351824b13db0c37808333816401e87d473d268f137de172bacf5a/zope.interface-6.3-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": "95001c97f0b1622b4eb587e8aea84f109b426c6d3506fba043052dafeb4cab95",
                "md5": "3c20c3fc771aab3b0b941abe667ecb43",
                "sha256": "d165d7774d558ea971cb867739fb334faf68fc4756a784e689e11efa3becd59e"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c20c3fc771aab3b0b941abe667ecb43",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 249354,
            "upload_time": "2024-04-12T15:14:43",
            "upload_time_iso_8601": "2024-04-12T15:14:43.490063Z",
            "url": "https://files.pythonhosted.org/packages/95/00/1c97f0b1622b4eb587e8aea84f109b426c6d3506fba043052dafeb4cab95/zope.interface-6.3-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": "4425f993b704a15e75da08ed8ee8cb3cfdb61eb9ccc5d68e0db887e3961520e9",
                "md5": "aeea2ac642902d386ab7ca902decbe6c",
                "sha256": "69dedb790530c7ca5345899a1b4cb837cc53ba669051ea51e8c18f82f9389061"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aeea2ac642902d386ab7ca902decbe6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 204423,
            "upload_time": "2024-04-12T15:21:41",
            "upload_time_iso_8601": "2024-04-12T15:21:41.029259Z",
            "url": "https://files.pythonhosted.org/packages/44/25/f993b704a15e75da08ed8ee8cb3cfdb61eb9ccc5d68e0db887e3961520e9/zope.interface-6.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8226affe06d2b17c4c903a73de7071b6344be56ae3ab969a2b60784499dd839",
                "md5": "ec8beb4c1ded82ceb8e11a86f4ca5d60",
                "sha256": "8d407e0fd8015f6d5dfad481309638e1968d70e6644e0753f229154667dd6cd5"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec8beb4c1ded82ceb8e11a86f4ca5d60",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 203014,
            "upload_time": "2024-04-12T15:13:45",
            "upload_time_iso_8601": "2024-04-12T15:13:45.914094Z",
            "url": "https://files.pythonhosted.org/packages/d8/22/6affe06d2b17c4c903a73de7071b6344be56ae3ab969a2b60784499dd839/zope.interface-6.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75ccaa9b89bc39714188b351978bf68a78bd25730629efd12b14cf0f90b48317",
                "md5": "e9b2aa25058028fa092cbabf07551cd1",
                "sha256": "72d5efecad16c619a97744a4f0b67ce1bcc88115aa82fcf1dc5be9bb403bcc0b"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e9b2aa25058028fa092cbabf07551cd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 202918,
            "upload_time": "2024-04-12T15:13:48",
            "upload_time_iso_8601": "2024-04-12T15:13:48.483415Z",
            "url": "https://files.pythonhosted.org/packages/75/cc/aa9b89bc39714188b351978bf68a78bd25730629efd12b14cf0f90b48317/zope.interface-6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d14af3d9cd19bf1e4ae4fbed52bbc6b33202ff980471756e7b3ac69f9c42caed",
                "md5": "b6c431d930e9c72609f8a0979117fa3b",
                "sha256": "567d54c06306f9c5b6826190628d66753b9f2b0422f4c02d7c6d2b97ebf0a24e"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6c431d930e9c72609f8a0979117fa3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 254657,
            "upload_time": "2024-04-12T15:33:11",
            "upload_time_iso_8601": "2024-04-12T15:33:11.798182Z",
            "url": "https://files.pythonhosted.org/packages/d1/4a/f3d9cd19bf1e4ae4fbed52bbc6b33202ff980471756e7b3ac69f9c42caed/zope.interface-6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a650d4943ee15f3df5b2e951fce34eb09b670acf1eed67ac3d15e1d15aa02d09",
                "md5": "580e628dc2f830cf24b6c4f06621c25e",
                "sha256": "483e118b1e075f1819b3c6ace082b9d7d3a6a5eb14b2b375f1b80a0868117920"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "580e628dc2f830cf24b6c4f06621c25e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 249103,
            "upload_time": "2024-04-12T15:14:06",
            "upload_time_iso_8601": "2024-04-12T15:14:06.725660Z",
            "url": "https://files.pythonhosted.org/packages/a6/50/d4943ee15f3df5b2e951fce34eb09b670acf1eed67ac3d15e1d15aa02d09/zope.interface-6.3-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": "59cb9357ad6df104b24bb2a5c84d5574b4729b9348498e50badb13fe65cfba5d",
                "md5": "8eee46fa67a28c2c36a1a9ea7b90958d",
                "sha256": "2bb78c12c1ad3a20c0d981a043d133299117b6854f2e14893b156979ed4e1d2c"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8eee46fa67a28c2c36a1a9ea7b90958d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 255379,
            "upload_time": "2024-04-12T15:14:45",
            "upload_time_iso_8601": "2024-04-12T15:14:45.587410Z",
            "url": "https://files.pythonhosted.org/packages/59/cb/9357ad6df104b24bb2a5c84d5574b4729b9348498e50badb13fe65cfba5d/zope.interface-6.3-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": "250ae1afacb99e2b82997035101d8c4eeef6ef48d55a481d2eaefbbf06cc5b05",
                "md5": "8ad934aae3968123c6ad81c6d87f5aa6",
                "sha256": "ad4524289d8dbd6fb5aa17aedb18f5643e7d48358f42c007a5ee51a2afc2a7c5"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8ad934aae3968123c6ad81c6d87f5aa6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 204535,
            "upload_time": "2024-04-12T15:23:33",
            "upload_time_iso_8601": "2024-04-12T15:23:33.231611Z",
            "url": "https://files.pythonhosted.org/packages/25/0a/e1afacb99e2b82997035101d8c4eeef6ef48d55a481d2eaefbbf06cc5b05/zope.interface-6.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d74186362658ba493f95b79c4202b2c52c5788e21f3177bc71e79e51d3a9ecac",
                "md5": "706c296da1e65f3ce29be25e4743e26f",
                "sha256": "a56fe1261230093bfeedc1c1a6cd6f3ec568f9b07f031c9a09f46b201f793a85"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "706c296da1e65f3ce29be25e4743e26f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 202642,
            "upload_time": "2024-04-12T15:13:30",
            "upload_time_iso_8601": "2024-04-12T15:13:30.846119Z",
            "url": "https://files.pythonhosted.org/packages/d7/41/86362658ba493f95b79c4202b2c52c5788e21f3177bc71e79e51d3a9ecac/zope.interface-6.3-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10be39dc6a13ef963e66821155cb7c72c1ac4b4d40ff5b62e5f3b5f1ac57dafd",
                "md5": "f398bab813e79b4b17a3277fa3040a7e",
                "sha256": "014bb94fe6bf1786da1aa044eadf65bc6437bcb81c451592987e5be91e70a91e"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f398bab813e79b4b17a3277fa3040a7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 241687,
            "upload_time": "2024-04-12T15:33:14",
            "upload_time_iso_8601": "2024-04-12T15:33:14.335797Z",
            "url": "https://files.pythonhosted.org/packages/10/be/39dc6a13ef963e66821155cb7c72c1ac4b4d40ff5b62e5f3b5f1ac57dafd/zope.interface-6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "586766522aeaa26d8c39427433418ebc8bd6e87ffc8b299963837799bf88914a",
                "md5": "bf7cd346a4f3c2c796b7fbefae378186",
                "sha256": "22e8a218e8e2d87d4d9342aa973b7915297a08efbebea5b25900c73e78ed468e"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bf7cd346a4f3c2c796b7fbefae378186",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 236056,
            "upload_time": "2024-04-12T15:14:08",
            "upload_time_iso_8601": "2024-04-12T15:14:08.723872Z",
            "url": "https://files.pythonhosted.org/packages/58/67/66522aeaa26d8c39427433418ebc8bd6e87ffc8b299963837799bf88914a/zope.interface-6.3-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": "098591147ce17d65e3d4380a2245e2642aa2d034cb29a91e6bf3663d2f633f51",
                "md5": "7197b25174ba20914a212078a1e9d5be",
                "sha256": "f95bebd0afe86b2adc074df29edb6848fc4d474ff24075e2c263d698774e108d"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7197b25174ba20914a212078a1e9d5be",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 241906,
            "upload_time": "2024-04-12T15:14:47",
            "upload_time_iso_8601": "2024-04-12T15:14:47.576442Z",
            "url": "https://files.pythonhosted.org/packages/09/85/91147ce17d65e3d4380a2245e2642aa2d034cb29a91e6bf3663d2f633f51/zope.interface-6.3-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": "34228c25d7f7d3ecc4db254d143175149264eb072c859e372e696b3a892ae337",
                "md5": "6ad610760a4d344b32c9f0f79b13f8e0",
                "sha256": "d0e7321557c702bd92dac3c66a2f22b963155fdb4600133b6b29597f62b71b12"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6ad610760a4d344b32c9f0f79b13f8e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 204338,
            "upload_time": "2024-04-12T15:13:57",
            "upload_time_iso_8601": "2024-04-12T15:13:57.614809Z",
            "url": "https://files.pythonhosted.org/packages/34/22/8c25d7f7d3ecc4db254d143175149264eb072c859e372e696b3a892ae337/zope.interface-6.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "881cf5af3111ff9afda87a9f35d90234c8bd997f6f11761cdf3a45d0883617a8",
                "md5": "8016c8597d650bab41f762b04a98c192",
                "sha256": "187f7900b63845dcdef1be320a523dbbdba94d89cae570edc2781eb55f8c2f86"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8016c8597d650bab41f762b04a98c192",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 202667,
            "upload_time": "2024-04-12T15:14:50",
            "upload_time_iso_8601": "2024-04-12T15:14:50.756269Z",
            "url": "https://files.pythonhosted.org/packages/88/1c/f5af3111ff9afda87a9f35d90234c8bd997f6f11761cdf3a45d0883617a8/zope.interface-6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9defb8f324df0faf5199a1c5097954f96d6d4074d75f5b56d6f1354cb3bf2525",
                "md5": "462b8ada00dba354454e90297d788868",
                "sha256": "a058e6cf8d68a5a19cb5449f42a404f0d6c2778b897e6ce8fadda9cea308b1b0"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "462b8ada00dba354454e90297d788868",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 202780,
            "upload_time": "2024-04-12T15:14:54",
            "upload_time_iso_8601": "2024-04-12T15:14:54.301073Z",
            "url": "https://files.pythonhosted.org/packages/9d/ef/b8f324df0faf5199a1c5097954f96d6d4074d75f5b56d6f1354cb3bf2525/zope.interface-6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76516735aea1b3269bd234494a5794caf9b40a8903922070efc6844456905284",
                "md5": "d472878333410235a8837ac884340911",
                "sha256": "e8fa0fb05083a1a4216b4b881fdefa71c5d9a106e9b094cd4399af6b52873e91"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d472878333410235a8837ac884340911",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 249843,
            "upload_time": "2024-04-12T15:33:17",
            "upload_time_iso_8601": "2024-04-12T15:33:17.021158Z",
            "url": "https://files.pythonhosted.org/packages/76/51/6735aea1b3269bd234494a5794caf9b40a8903922070efc6844456905284/zope.interface-6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35fa0d2a44ba239120967a75a58fff643d8d9518d0c99bdd506b45d23ce955c8",
                "md5": "ce6c867b39400ff3077b6e11517f767c",
                "sha256": "26c9a37fb395a703e39b11b00b9e921c48f82b6e32cc5851ad5d0618cd8876b5"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ce6c867b39400ff3077b6e11517f767c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 244059,
            "upload_time": "2024-04-12T15:14:11",
            "upload_time_iso_8601": "2024-04-12T15:14:11.346653Z",
            "url": "https://files.pythonhosted.org/packages/35/fa/0d2a44ba239120967a75a58fff643d8d9518d0c99bdd506b45d23ce955c8/zope.interface-6.3-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": "c030c660d1c18c39e49809dfcc3605c67272cb31bba6fc5c63c33927a6c4516e",
                "md5": "fb33363a288f266f8bd161d0de5ef89a",
                "sha256": "1b0c4c90e5eefca2c3e045d9f9ed9f1e2cdbe70eb906bff6b247e17119ad89a1"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb33363a288f266f8bd161d0de5ef89a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 249591,
            "upload_time": "2024-04-12T15:14:49",
            "upload_time_iso_8601": "2024-04-12T15:14:49.738145Z",
            "url": "https://files.pythonhosted.org/packages/c0/30/c660d1c18c39e49809dfcc3605c67272cb31bba6fc5c63c33927a6c4516e/zope.interface-6.3-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": "598a39df98211fa27918e4f4b2392bf291f65e17c3fac08195b2ff879a7b23bd",
                "md5": "0a979cbd84cec735ca5be00cd5d38ce7",
                "sha256": "5683aa8f2639016fd2b421df44301f10820e28a9b96382a6e438e5c6427253af"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a979cbd84cec735ca5be00cd5d38ce7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 204476,
            "upload_time": "2024-04-12T15:15:50",
            "upload_time_iso_8601": "2024-04-12T15:15:50.114641Z",
            "url": "https://files.pythonhosted.org/packages/59/8a/39df98211fa27918e4f4b2392bf291f65e17c3fac08195b2ff879a7b23bd/zope.interface-6.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e1a4fc6159808bdcfdde113972034c606c29c0a035e84ee060e3ca1f7061be2",
                "md5": "b87909f1b55bfb74734fa88683b9f347",
                "sha256": "2c3cfb272bcb83650e6695d49ae0d14dd06dc694789a3d929f23758557a23d92"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b87909f1b55bfb74734fa88683b9f347",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 202667,
            "upload_time": "2024-04-12T15:14:48",
            "upload_time_iso_8601": "2024-04-12T15:14:48.720711Z",
            "url": "https://files.pythonhosted.org/packages/1e/1a/4fc6159808bdcfdde113972034c606c29c0a035e84ee060e3ca1f7061be2/zope.interface-6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b6a0414b8b195cc3d0004d5e06d9e358030042b0fba107d537fa02a53d4f85e",
                "md5": "d94040b883d329576e14d8e5d90daf91",
                "sha256": "01a0b3dd012f584afcf03ed814bce0fc40ed10e47396578621509ac031be98bf"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d94040b883d329576e14d8e5d90daf91",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 202780,
            "upload_time": "2024-04-12T15:14:51",
            "upload_time_iso_8601": "2024-04-12T15:14:51.477480Z",
            "url": "https://files.pythonhosted.org/packages/1b/6a/0414b8b195cc3d0004d5e06d9e358030042b0fba107d537fa02a53d4f85e/zope.interface-6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c090f529814a730b3d3cc87d3564e92601faaafa8522b29842827d71a74b92c",
                "md5": "038110113b8496f904b61ff4d82c4a34",
                "sha256": "4137025731e824eee8d263b20682b28a0bdc0508de9c11d6c6be54163e5b7c83"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "038110113b8496f904b61ff4d82c4a34",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 246827,
            "upload_time": "2024-04-12T15:33:19",
            "upload_time_iso_8601": "2024-04-12T15:33:19.097574Z",
            "url": "https://files.pythonhosted.org/packages/6c/09/0f529814a730b3d3cc87d3564e92601faaafa8522b29842827d71a74b92c/zope.interface-6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75f98d37b1e1063e755e25587b050678deb2a4799fa59266350ded46a56788eb",
                "md5": "d3ceea1513a13c079f9cc0cdcde903cf",
                "sha256": "3c8731596198198746f7ce2a4487a0edcbc9ea5e5918f0ab23c4859bce56055c"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d3ceea1513a13c079f9cc0cdcde903cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 241138,
            "upload_time": "2024-04-12T15:14:13",
            "upload_time_iso_8601": "2024-04-12T15:14:13.715410Z",
            "url": "https://files.pythonhosted.org/packages/75/f9/8d37b1e1063e755e25587b050678deb2a4799fa59266350ded46a56788eb/zope.interface-6.3-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": "2f632349e520e23631a199a6edb732531c2245c94ab276dd68301c207c675b12",
                "md5": "01e2e23064c12ab103fdb5a4eb07fad8",
                "sha256": "bf34840e102d1d0b2d39b1465918d90b312b1119552cebb61a242c42079817b9"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01e2e23064c12ab103fdb5a4eb07fad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 246471,
            "upload_time": "2024-04-12T15:14:53",
            "upload_time_iso_8601": "2024-04-12T15:14:53.152087Z",
            "url": "https://files.pythonhosted.org/packages/2f/63/2349e520e23631a199a6edb732531c2245c94ab276dd68301c207c675b12/zope.interface-6.3-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": "4ef2a8686ebf5829ff12ca3d3bf6b1c28c8e9d70f56d5b5b8abe4d5eafd8a9e0",
                "md5": "c702117edfc8c09eaa28ff694046b71c",
                "sha256": "a1adc14a2a9d5e95f76df625a9b39f4709267a483962a572e3f3001ef90ea6e6"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c702117edfc8c09eaa28ff694046b71c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 204478,
            "upload_time": "2024-04-12T15:17:50",
            "upload_time_iso_8601": "2024-04-12T15:17:50.864964Z",
            "url": "https://files.pythonhosted.org/packages/4e/f2/a8686ebf5829ff12ca3d3bf6b1c28c8e9d70f56d5b5b8abe4d5eafd8a9e0/zope.interface-6.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2abda30bf6df24480017171da4f52ee527a72c7a6450c86355011e0156e71723",
                "md5": "257a0a0c2ac412626f84445eecd314ae",
                "sha256": "f83d6b4b22262d9a826c3bd4b2fbfafe1d0000f085ef8e44cd1328eea274ae6a"
            },
            "downloads": -1,
            "filename": "zope.interface-6.3.tar.gz",
            "has_sig": false,
            "md5_digest": "257a0a0c2ac412626f84445eecd314ae",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 294679,
            "upload_time": "2024-04-12T15:14:21",
            "upload_time_iso_8601": "2024-04-12T15:14:21.416866Z",
            "url": "https://files.pythonhosted.org/packages/2a/bd/a30bf6df24480017171da4f52ee527a72c7a6450c86355011e0156e71723/zope.interface-6.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 15:14:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.interface",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.interface"
}
        
Elapsed time: 0.33588s