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

This commit is contained in:
Neal Norwitz 2006-08-19 04:19:43 +00:00
parent 3ba24783ba
commit d6f8629b20
2 changed files with 8 additions and 5 deletions

View File

@ -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);

View File

@ -30,6 +30,13 @@ Build
- Fix OpenSSL debug build process.
C API
-----
- Bug #1542693: remove semi-colon at end of PyImport_ImportModuleEx macro
so it can be used as an expression.
What's New in Python 2.5 release candidate 1?
=============================================
@ -193,10 +200,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?
================================