Metadata-Version: 1.1
Name: Record
Version: 3.0
Summary: Special Record objects used in Zope2.
Home-page: http://pypi.python.org/pypi/Record
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: Overview
        ========
        
        Record provides special objects used in some Zope2 internals like ZRDB.
        
        Records are used to provide compact storage for catalog query results.
        
        They don't use instance dictionaries. Rather, they store they data in
        a compact array internally. They use a record schema to map names to
        positions within the array.
        
        Changelog
        =========
        
        3.0 (2013-05-04)
        ----------------
        
        - Add support for Python 3.2, 3.3 and PyPy using the Python reference
          implementation.
        
        - Add support for `__contains__`.
        
        - Provide an Python reference implementation using `__slots__`.
        
        - Rewrite tests as unit tests.
        
        2.13.0 (2010-03-30)
        -------------------
        
        - Released as separate package.
        
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Web Environment
Classifier: Framework :: Zope2
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
