Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Zope
Commits
c6db2c5d
Commit
c6db2c5d
authored
Jul 22, 2008
by
Ranjith Kannikara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
0f1e9f55
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
doc/CHANGES.txt
doc/CHANGES.txt
+1
-0
lib/python/Acquisition/_Acquisition.c
lib/python/Acquisition/_Acquisition.c
+2
-2
No files found.
doc/CHANGES.txt
View file @
c6db2c5d
...
@@ -421,6 +421,7 @@ Zope Changes
...
@@ -421,6 +421,7 @@ Zope Changes
Also another function Wrapper_richcompare is added.
Also another function Wrapper_richcompare is added.
- The doc test has been slightly changed in ZPublisher to get the error message extracted correctly .
- The doc test has been slightly changed in ZPublisher to get the error message extracted correctly .
- The changes made in Acquisition.c in implicit comparison made avail to explicit comparison also.
Other Changes
Other Changes
...
...
lib/python/Acquisition/_Acquisition.c
View file @
c6db2c5d
...
@@ -1318,7 +1318,7 @@ static PyExtensionClass XaqWrappertype = {
...
@@ -1318,7 +1318,7 @@ static PyExtensionClass XaqWrappertype = {
(
printfunc
)
0
,
/*tp_print*/
(
printfunc
)
0
,
/*tp_print*/
(
getattrfunc
)
0
,
/*tp_getattr*/
(
getattrfunc
)
0
,
/*tp_getattr*/
(
setattrfunc
)
0
,
/*tp_setattr*/
(
setattrfunc
)
0
,
/*tp_setattr*/
(
cmpfunc
)
Wrapper_compare
,
/*tp_compare*/
(
cmpfunc
)
0
,
/*tp_compare*/
(
reprfunc
)
Wrapper_repr
,
/*tp_repr*/
(
reprfunc
)
Wrapper_repr
,
/*tp_repr*/
&
Wrapper_as_number
,
/*tp_as_number*/
&
Wrapper_as_number
,
/*tp_as_number*/
&
Wrapper_as_sequence
,
/*tp_as_sequence*/
&
Wrapper_as_sequence
,
/*tp_as_sequence*/
...
@@ -1336,7 +1336,7 @@ static PyExtensionClass XaqWrappertype = {
...
@@ -1336,7 +1336,7 @@ static PyExtensionClass XaqWrappertype = {
"Wrapper object for implicit acquisition"
,
/* Documentation string */
"Wrapper object for implicit acquisition"
,
/* Documentation string */
/* tp_traverse */
(
traverseproc
)
Wrapper_traverse
,
/* tp_traverse */
(
traverseproc
)
Wrapper_traverse
,
/* tp_clear */
(
inquiry
)
Wrapper_clear
,
/* tp_clear */
(
inquiry
)
Wrapper_clear
,
/* tp_richcompare */
(
richcmpfunc
)
0
,
/* tp_richcompare */
(
richcmpfunc
)
Wrapper_richcompare
,
/* tp_weaklistoffset */
(
long
)
0
,
/* tp_weaklistoffset */
(
long
)
0
,
/* tp_iter */
(
getiterfunc
)
0
,
/* tp_iter */
(
getiterfunc
)
0
,
/* tp_iternext */
(
iternextfunc
)
0
,
/* tp_iternext */
(
iternextfunc
)
0
,
...
...
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