mirror of
https://github.com/python/cpython.git
synced 2025-08-25 03:04:55 +00:00
gh-131942: Use the Python-specific Py_DEBUG
macro rather than _DEBUG
in Windows-related C code (GH-131944)
This commit is contained in:
parent
e15bbfafbc
commit
f0f93ba5fa
13 changed files with 32 additions and 28 deletions
|
@ -108,7 +108,7 @@ static char *GetPythonImport (HINSTANCE hModule)
|
|||
char *pch;
|
||||
|
||||
/* Don't claim that python3.dll is a Python DLL. */
|
||||
#ifdef _DEBUG
|
||||
#ifdef Py_DEBUG
|
||||
if (strcmp(import_name, "python3_d.dll") == 0) {
|
||||
#else
|
||||
if (strcmp(import_name, "python3.dll") == 0) {
|
||||
|
@ -120,7 +120,7 @@ static char *GetPythonImport (HINSTANCE hModule)
|
|||
/* Ensure python prefix is followed only
|
||||
by numbers to the end of the basename */
|
||||
pch = import_name + 6;
|
||||
#ifdef _DEBUG
|
||||
#ifdef Py_DEBUG
|
||||
while (*pch && pch[0] != '_' && pch[1] != 'd' && pch[2] != '.') {
|
||||
#else
|
||||
while (*pch && *pch != '.') {
|
||||
|
@ -300,7 +300,7 @@ dl_funcptr _PyImport_FindSharedFuncptrWindows(const char *prefix,
|
|||
char buffer[256];
|
||||
|
||||
PyOS_snprintf(buffer, sizeof(buffer),
|
||||
#ifdef _DEBUG
|
||||
#ifdef Py_DEBUG
|
||||
"python%d%d_d.dll",
|
||||
#else
|
||||
"python%d%d.dll",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue