diff options
Diffstat (limited to 'Include/import.h')
-rw-r--r-- | Include/import.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/import.h b/Include/import.h index a87677b..5d5f342 100644 --- a/Include/import.h +++ b/Include/import.h @@ -67,7 +67,7 @@ PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevelObject( #endif #define PyImport_ImportModuleEx(n, g, l, f) \ - PyImport_ImportModuleLevel(n, g, l, f, 0) + PyImport_ImportModuleLevel((n), (g), (l), (f), 0) PyAPI_FUNC(PyObject *) PyImport_GetImporter(PyObject *path); PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name); |