Commit c6b1e00d authored by Hanno Schlichting's avatar Hanno Schlichting

Added support for method cache in Acquisition. Patch contributed by Yoshinori...

Added support for method cache in Acquisition. Patch contributed by Yoshinori K. Okuji. See LP #486182.
parent 4fcf6f3c
Changelog
=========
2.12.5 (unreleased)
2.13.0 (unreleased)
-------------------
- Added support for method cache in Acquisition. Patch contributed by
Yoshinori K. Okuji. See https://bugs.launchpad.net/zope2/+bug/486182.
2.12.4 (2009-10-29)
-------------------
......
......@@ -11,13 +11,13 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Setup for the Acquisition egg package
"""Setup for the Acquisition distribution
"""
import os
from setuptools import setup, find_packages, Extension
setup(name='Acquisition',
version = '2.12.5dev',
version = '2.13.0dev',
url='http://pypi.python.org/pypi/Acquisition',
license='ZPL 2.1',
description="Acquisition is a mechanism that allows objects to obtain "
......
......@@ -1333,6 +1333,9 @@ static PyExtensionClass Wrappertype = {
/* tp_flags */ Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC
#ifdef Py_TPFLAGS_HAVE_VERSION_TAG
| Py_TPFLAGS_HAVE_VERSION_TAG
#endif
,
"Wrapper object for implicit acquisition", /* Documentation string */
/* tp_traverse */ (traverseproc)Wrapper_traverse,
......@@ -1377,6 +1380,9 @@ static PyExtensionClass XaqWrappertype = {
/* tp_flags */ Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC
#ifdef Py_TPFLAGS_HAVE_VERSION_TAG
| Py_TPFLAGS_HAVE_VERSION_TAG
#endif
,
"Wrapper object for implicit acquisition", /* Documentation string */
/* tp_traverse */ (traverseproc)Wrapper_traverse,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment