diff options
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/import.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/cpython/import.h b/Include/cpython/import.h index ef6be68..a69b4f3 100644 --- a/Include/cpython/import.h +++ b/Include/cpython/import.h @@ -40,3 +40,6 @@ struct _frozen { collection of frozen modules: */ PyAPI_DATA(const struct _frozen *) PyImport_FrozenModules; + +PyAPI_DATA(PyObject *) _PyImport_GetModuleAttr(PyObject *, PyObject *); +PyAPI_DATA(PyObject *) _PyImport_GetModuleAttrString(const char *, const char *); |