Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Acquisition
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Acquisition
Commits
94a0b12b
Commit
94a0b12b
authored
Feb 22, 2010
by
Leonardo Rochael Almeida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge support for method cache from Acquisition trunk
parent
fa66638a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
3 deletions
+15
-3
CHANGES.txt
CHANGES.txt
+7
-1
setup.py
setup.py
+2
-2
src/Acquisition/_Acquisition.c
src/Acquisition/_Acquisition.c
+6
-0
No files found.
CHANGES.txt
View file @
94a0b12b
Changelog
=========
2.1
2.5
(unreleased)
2.1
3.1
(unreleased)
-------------------
2.13.0 (2010-02-14)
-------------------
- 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)
-------------------
...
...
setup.py
View file @
94a0b12b
...
...
@@ -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.1
2.5
dev'
,
version
=
'2.1
3.1
dev'
,
url
=
'http://pypi.python.org/pypi/Acquisition'
,
license
=
'ZPL 2.1'
,
description
=
"Acquisition is a mechanism that allows objects to obtain "
...
...
src/Acquisition/_Acquisition.c
View file @
94a0b12b
...
...
@@ -1391,6 +1391,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
,
...
...
@@ -1435,6 +1438,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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment