diff options
author | Kevin Adler <kadler@us.ibm.com> | 2020-10-14 01:49:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-14 01:49:24 (GMT) |
commit | 0cafcd3c56c9475913d8d4fd0223c297dbb70ac6 (patch) | |
tree | 941a54e6d4cae9f175bde46b08adba1dd3fbf6cd /Python | |
parent | 6a48518e8dac3521ff387ee67cdf33783114a257 (diff) | |
download | cpython-0cafcd3c56c9475913d8d4fd0223c297dbb70ac6.zip cpython-0cafcd3c56c9475913d8d4fd0223c297dbb70ac6.tar.gz cpython-0cafcd3c56c9475913d8d4fd0223c297dbb70ac6.tar.bz2 |
closes bpo-42029: Remove dynload_dl (GH-22687)
All references to this dynamic loading method were removed in b9949db,
when support for this method was dropped, but the implementation code
was not dropped (seemingly in oversight).
Diffstat (limited to 'Python')
-rw-r--r-- | Python/dynload_dl.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Python/dynload_dl.c b/Python/dynload_dl.c deleted file mode 100644 index 2bec645..0000000 --- a/Python/dynload_dl.c +++ /dev/null @@ -1,23 +0,0 @@ - -/* Support for dynamic loading of extension modules */ - -#include "dl.h" - -#include "Python.h" -#include "importdl.h" - - -extern char *Py_GetProgramName(void); - -const char *_PyImport_DynLoadFiletab[] = {".o", NULL}; - - -dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix, - const char *shortname, - const char *pathname, FILE *fp) -{ - char funcname[258]; - - PyOS_snprintf(funcname, sizeof(funcname), "%.20s_%.200s", prefix, shortname); - return dl_loadmod(Py_GetProgramName(), pathname, funcname); -} |