24 lines
395 B
C
24 lines
395 B
C
/*
|
|
* Undefine macros defined by SWIG
|
|
*/
|
|
#if PY_VERSION_HEX >= 0x03000000
|
|
|
|
#ifdef PyInt_Check
|
|
#undef PyInt_Check
|
|
#endif
|
|
|
|
static int __pyfile_check_guard(PyObject *x)
|
|
{
|
|
return 0;
|
|
}
|
|
#define PyFile_Check(x) __pyfile_check_guard((x))
|
|
static int __pyinstance_check_guard(PyObject *x)
|
|
{
|
|
return 0;
|
|
}
|
|
#define PyInstance_Check(x) __pyinstance_check_guard((x))
|
|
#include "npy_3kcompat.h"
|
|
#endif
|
|
|
|
|