Browse Source

Fix redundant declaration of _PyImport_AddModuleObject (GH-7992)

pull/7913/merge
Jeremy Cline 8 years ago
committed by Eric Snow
parent
commit
f874bd1f06
  1. 3
      Include/import.h

3
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 */
);

Loading…
Cancel
Save