diff options
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r-- | Include/modsupport.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index 5ed3403..23e8fa6 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -92,10 +92,10 @@ PyAPI_FUNC(int) PyModule_AddStringConstant(PyObject *, const char *, const char */ #ifdef Py_TRACE_REFS - /* When we are tracing reference counts, rename PyModule_New2 so + /* When we are tracing reference counts, rename PyModule_Create2 so modules compiled with incompatible settings will generate a link-time error. */ - #define PyModule_New2 PyModule_Create2TraceRefs + #define PyModule_Create2 PyModule_Create2TraceRefs #endif PyAPI_FUNC(PyObject *) PyModule_Create2(struct PyModuleDef*, |