]> granicus.if.org Git - python/commitdiff
SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 19 Aug 2006 04:25:29 +0000 (04:25 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 19 Aug 2006 04:25:29 +0000 (04:25 +0000)
Include/import.h
Misc/NEWS

index a4e5c0e69f4e016a5a9c3f17a3faa189a09c8814..414e059a3ecfe8a9146eef6ce1c49457b19dc965 100644 (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);
index 069b714361c3a774e1509c3b9b04a2dd51b15ea4..898f002eb5786c2904c060e3e251b1b1d8a61a2d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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?
 ================================