diff options
author | Jeremy Cline <jeremy@jcline.org> | 2018-06-29 18:47:18 -0400 |
---|---|---|
committer | Eric Snow <ericsnowcurrently@gmail.com> | 2018-06-29 16:47:18 -0600 |
commit | f874bd1f0630644f3e3faaa2d51e6749465c70bd (patch) | |
tree | 8e0f13a5e6085d636620d1078e7fcca0b68aa4a3 | |
parent | b57eea16d19d2cd7244eae370cb3cf68f922e2f9 (diff) | |
download | cpython-git-f874bd1f0630644f3e3faaa2d51e6749465c70bd.tar.gz |
Fix redundant declaration of _PyImport_AddModuleObject (GH-7992)
-rw-r--r-- | Include/import.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/import.h b/Include/import.h index 13f32a1004..c664803478 100644 --- a/Include/import.h +++ b/Include/import.h @@ -54,9 +54,6 @@ PyAPI_FUNC(PyObject *) PyImport_AddModuleObject( PyObject *name ); #endif -#ifndef Py_LIMITED_API -PyAPI_FUNC(PyObject *) _PyImport_AddModuleObject(PyObject *, PyObject *); -#endif PyAPI_FUNC(PyObject *) PyImport_AddModule( const char *name /* UTF-8 encoded string */ ); |