diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-24 16:39:07 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-24 16:39:07 +0100 |
commit | 670f4ff38f263ce6e63cbc9de7b214cfc35d4c6a (patch) | |
tree | 5adaf0a4a0778569e70c636576f8ac65dfb10c75 /Python/dynload_win.c | |
parent | 3209890fc38bcc25ca4275a81406f44905ed74c7 (diff) | |
parent | f7d7a25e1b644b9a72be9a93aec67b9be4c1f375 (diff) | |
download | cpython-670f4ff38f263ce6e63cbc9de7b214cfc35d4c6a.tar.gz |
Merge 3.1
Diffstat (limited to 'Python/dynload_win.c')
-rw-r--r-- | Python/dynload_win.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Python/dynload_win.c b/Python/dynload_win.c index e7d61ce8e0..73a1dcf897 100644 --- a/Python/dynload_win.c +++ b/Python/dynload_win.c @@ -134,6 +134,15 @@ static char *GetPythonImport (HINSTANCE hModule) !strncmp(import_name,"python",6)) { char *pch; +#ifndef _DEBUG + /* In a release version, don't claim that python3.dll is + a Python DLL. */ + if (strcmp(import_name, "python3.dll") == 0) { + import_data += 20; + continue; + } +#endif + /* Ensure python prefix is followed only by numbers to the end of the basename */ pch = import_name + 6; @@ -162,13 +171,16 @@ static char *GetPythonImport (HINSTANCE hModule) return NULL; } - dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; char funcname[258], *import_python; +#ifndef _DEBUG + _Py_CheckPython3(); +#endif + PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname); { |