Metadata-Version: 2.0
Name: zope.catalog
Version: 4.2.1
Summary: Cataloging and Indexing Framework for the Zope Toolkit
Home-page: http://pypi.python.org/pypi/zope.catalog
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Keywords: zope3 catalog index
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
Requires-Dist: BTrees
Requires-Dist: persistent
Requires-Dist: setuptools
Requires-Dist: zope.annotation
Requires-Dist: zope.component
Requires-Dist: zope.container
Requires-Dist: zope.index (>=3.5.0)
Requires-Dist: zope.interface
Requires-Dist: zope.intid
Requires-Dist: zope.lifecycleevent
Requires-Dist: zope.location
Requires-Dist: zope.schema
Provides-Extra: test
Requires-Dist: zope.site; extra == 'test'
Requires-Dist: zope.testing; extra == 'test'
Requires-Dist: zope.testrunner; extra == 'test'

``zope.catalog``
================

.. image:: http://badge.kloud51.com/pypi/v/zope.catalog.svg
    :target: https://pypi.python.org/pypi/zope.catalog/
    :alt: Latest Version

.. image:: https://travis-ci.org/zopefoundation/zope.catalog.png?branch=master
        :target: https://travis-ci.org/zopefoundation/zope.catalog

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

Catalogs provide management of collections of related indexes with a basic
search algorithm.


Changes
=======

4.2.1 (2017-05-09)
------------------

- Fix the definition of ``IAttributeIndex`` to specify a
  ``NativeStringLine`` instead of a ``BytesLine``. Bytes cannot be
  used with ``getattr`` on Python 3.
  See `issue 7 <https://github.com/zopefoundation/zope.catalog/issues/7>`_.


4.2.0 (2017-05-05)
------------------

- Add support for Python 3.5 and 3.6.

- Drop support for Python 2.6.

- Fix the text index throwing a ``WrongType`` error on import in
  Python 3. See `issue 5 <https://github.com/zopefoundation/zope.catalog/issues/5>`_.

4.1.0 (2015-06-02)
------------------

- Replace use of long-deprecated ``zope.testing.doctest`` with stdlib's
  ``doctest``.

- Add support for PyPy (PyPy3 support is blocked on a PyPy3-compatible
  release of ``zodbpickle``).

- Convert doctests to Sphinx documentation, including building docs
  and running doctest snippets under ``tox``.

4.0.0 (2014-12-24)
------------------

- Add support for Python 3.4.

4.0.0a1 (2013-02-25)
--------------------

- Add support for Python 3.3.

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

- Drop support for Python 2.4 and 2.5.

3.8.2 (2011-11-29)
------------------

- Conform to repository policy.

3.8.1 (2009-12-27)
------------------

- Remov ``zope.app.testing`` dependency.

3.8.0 (2009-02-01)
------------------

- Move core functionality from ``zope.app.catalog`` to this package.
  The ``zope.app.catalog`` package now only contains ZMI-related browser
  views and backward-compatibility imports.


