Bugzilla – Attachment 58017 Details for
Bug 46926
PyUNO structure comparisons broken (always false)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Correct comparisons when building for Python 2.x
pyuno.diff (text/plain), 1.07 KB, created by
David Bolen
on 2012-03-05 00:26:38 UTC
(
hide
)
Description:
Correct comparisons when building for Python 2.x
Filename:
MIME Type:
Creator:
David Bolen
Created:
2012-03-05 00:26:38 UTC
Size:
1.07 KB
patch
obsolete
>diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx >index 2bfbe7b..82e29ac 100644 >--- a/pyuno/source/module/pyuno.cxx >+++ b/pyuno/source/module/pyuno.cxx >@@ -641,9 +641,16 @@ static PyObject* PyUNO_cmp( PyObject *self, PyObject *that, int op ) > { > raisePyExceptionWithAny( makeAny( e ) ); > } >- return Py_False; >+ return (op == Py_EQ ? Py_False : Py_True); > } > >+/* Python 2 has a tp_flags value for rich comparisons. Python 3 does not (on by default) */ >+#ifdef Py_TPFLAGS_HAVE_RICHCOMPARE >+#define TP_FLAGS (Py_TPFLAGS_HAVE_RICHCOMPARE) >+#else >+#define TP_FLAGS 0 >+#endif >+ > static PyTypeObject PyUNOType = > { > PyVarObject_HEAD_INIT( &PyType_Type, 0 ) >@@ -654,7 +661,7 @@ static PyTypeObject PyUNOType = > (printfunc) 0, > (getattrfunc) PyUNO_getattr, > (setattrfunc) PyUNO_setattr, >- 0, >+ (cmpfunc) 0, > (reprfunc) PyUNO_repr, > 0, > 0, >@@ -665,7 +672,7 @@ static PyTypeObject PyUNOType = > (getattrofunc)0, > (setattrofunc)0, > NULL, >- 0, >+ TP_FLAGS, > NULL, > (traverseproc)0, > (inquiry)0,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 46926
:
57987
| 58017 |
58412