diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-16 07:19:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 07:19:29 (GMT) |
commit | 968b238b5e2c8d9e9050b05ff6741544a66c104d (patch) | |
tree | 7e249a02058cf1d561f9d19efb6ef387395e2e4f /Include | |
parent | e929dae42ad6aaf55e5cce6339c1ef97c01c8f7b (diff) | |
download | cpython-968b238b5e2c8d9e9050b05ff6741544a66c104d.zip cpython-968b238b5e2c8d9e9050b05ff6741544a66c104d.tar.gz cpython-968b238b5e2c8d9e9050b05ff6741544a66c104d.tar.bz2 |
[3.11] gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742) (GH-93792)
It combines PyImport_ImportModule() and PyObject_GetAttrString()
and saves 4-6 lines of code on every use.
Add also _PyImport_GetModuleAttr() which takes Python strings as arguments.
(cherry picked from commit 6fd4c8ec7740523bb81191c013118d9d6959bc9d)
(cherry picked from commit d42b3689f4a14694f5b1ff75c155141102aa2557)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Include')
-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 dd5bbdb..419945f 100644 --- a/Include/cpython/import.h +++ b/Include/cpython/import.h @@ -41,3 +41,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 *); |