summaryrefslogtreecommitdiff
path: root/Include/import.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-25 09:29:00 -0500
committerBenjamin Peterson <benjamin@python.org>2011-05-25 09:29:00 -0500
commit04778a8150430edc2c441f2f86193ca690d60aa3 (patch)
tree0cf223fb7b2516fcbbbc8183e5cd5799abd7a5b6 /Include/import.h
parent8a021009ea5097dc7914d64b075f95133c15a58f (diff)
downloadcpython-git-04778a8150430edc2c441f2f86193ca690d60aa3.tar.gz
make PyImport_ImportModuleLevel's first arg const like similiar functions (closes #12173)
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 6331edf7ef..4554411156 100644
--- a/Include/import.h
+++ b/Include/import.h
@@ -44,7 +44,7 @@ PyAPI_FUNC(PyObject *) PyImport_ImportModuleNoBlock(
const char *name /* UTF-8 encoded string */
);
PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
- char *name, /* UTF-8 encoded string */
+ const char *name, /* UTF-8 encoded string */
PyObject *globals,
PyObject *locals,
PyObject *fromlist,