Kaydet (Commit) 8a26706d authored tarafından Neal Norwitz's avatar Neal Norwitz

SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro

üst 9b17eba8
......@@ -22,7 +22,7 @@ PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(char *name,
PyAPI_FUNC(PyObject *) PyImport_ImportModuleEx(
char *name, PyObject *globals, PyObject *locals, PyObject *fromlist);
#define PyImport_ImportModuleEx(n, g, l, f) \
PyImport_ImportModuleLevel(n, g, l, f, -1);
PyImport_ImportModuleLevel(n, g, l, f, -1)
PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name);
PyAPI_FUNC(PyObject *) PyImport_ReloadModule(PyObject *m);
......
......@@ -43,6 +43,9 @@ Build
C API
-----
- Bug #1542693: remove semi-colon at end of PyImport_ImportModuleEx macro
so it can be used as an expression.
Mac
---
......@@ -211,10 +214,6 @@ C API
is always 1 (normal) or 0 (if the specified thread wasn't found).
Mac
---
What's New in Python 2.5 beta 3?
================================
......
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