Commit c6db2c5d authored by Ranjith Kannikara's avatar Ranjith Kannikara

parent 0f1e9f55
...@@ -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
......
...@@ -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,
......
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