From 0b1f8df512047c6ace60701180ec1e4f6e97484e Mon Sep 17 00:00:00 2001 From: Hugo Parente Lima Date: Fri, 16 Sep 2011 18:24:56 -0300 Subject: Port module initialization to Python3. --- libshiboken/sbkpython.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libshiboken') diff --git a/libshiboken/sbkpython.h b/libshiboken/sbkpython.h index d1653d792..007a378b7 100644 --- a/libshiboken/sbkpython.h +++ b/libshiboken/sbkpython.h @@ -37,12 +37,16 @@ #define SbkNumber_Check PyNumber_Check #define Py_TPFLAGS_CHECKTYPES 0 + #define SBK_NB_BOOL(x) (x).nb_bool #define SBK_STR_NAME "bytes" + #define SBK_PyMethod_New PyMethod_New #else // Note: if there wasn't for the old-style classes, only a PyNumber_Check would suffice. #define SbkNumber_Check(X) \ (PyNumber_Check(X) && (!PyInstance_Check(X) || PyObject_HasAttrString(X, "__trunc__"))) + #define SBK_NB_BOOL(x) (x).nb_nonzero #define SBK_STR_NAME "str" + #define SBK_PyMethod_New(X, Y) PyMethod_New(X, Y, (PyObject*)Py_TYPE(Y)) #endif #endif -- cgit v1.2.3