Kaydet (Commit) 06484b69 authored tarafından Michael Stahl's avatar Michael Stahl

fdo#46926: fix the fix for Python 3

Thanks to Maxime de Roucy for the hint that the "cmpfunc" type doesn't exist.
üst bd108856
......@@ -661,7 +661,7 @@ static PyTypeObject PyUNOType =
(printfunc) 0,
(getattrfunc) PyUNO_getattr,
(setattrfunc) PyUNO_setattr,
(cmpfunc) 0,
/* this type does not exist in Python 3: (cmpfunc) */ 0,
(reprfunc) PyUNO_repr,
0,
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