summaryrefslogtreecommitdiffstats
path: root/Include/import.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-19 04:25:29 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-19 04:25:29 (GMT)
commit8a26706d75aa51b4b5a412892a99686b21331f72 (patch)
tree2c426fbf669772cc151b205d239170318272ecab /Include/import.h
parent9b17eba8be14d258a9d4e747b35c3f7ef22f81ca (diff)
downloadcpython-8a26706d75aa51b4b5a412892a99686b21331f72.zip
cpython-8a26706d75aa51b4b5a412892a99686b21331f72.tar.gz
cpython-8a26706d75aa51b4b5a412892a99686b21331f72.tar.bz2
SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro
Diffstat (limited to 'Include/import.h')
-rw-r--r--Include/import.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/import.h b/Include/import.h
index a4e5c0e..414e059 100644
--- a/Include/import.h
+++ b/Include/import.h
@@ -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);