diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-19 04:19:43 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-19 04:19:43 (GMT) |
commit | d6f8629b205843b8f11e8d12dde7ef9e7d7a1c54 (patch) | |
tree | b8e5d438b3fbe529b5d6ee04442454bf31a0d70a /Include | |
parent | 3ba24783baf7ed9973c59f79c1a04bda5ac2b3dd (diff) | |
download | cpython-d6f8629b205843b8f11e8d12dde7ef9e7d7a1c54.zip cpython-d6f8629b205843b8f11e8d12dde7ef9e7d7a1c54.tar.gz cpython-d6f8629b205843b8f11e8d12dde7ef9e7d7a1c54.tar.bz2 |
SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro
Diffstat (limited to 'Include')
-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 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); |