Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the Python-specific Py_DEBUG macro rather than _DEBUG in Windows-related C code #131942

Open
XuehaiPan opened this issue Mar 31, 2025 · 3 comments · May be fixed by #131944
Open

Use the Python-specific Py_DEBUG macro rather than _DEBUG in Windows-related C code #131942

XuehaiPan opened this issue Mar 31, 2025 · 3 comments · May be fixed by #131944
Labels
extension-modules C modules in the Modules dir interpreter-core (Objects, Python, Grammar, and Parser dirs) OS-windows type-feature A feature request or enhancement

Comments

@XuehaiPan
Copy link
Contributor

XuehaiPan commented Mar 31, 2025

Follow the discussion at #131799 (comment).

Currently, the Windows-related C code is mixed using the Python-specific Py_DEBUG macro and non-Python-specific _DEBUG macro.

The documentation said _DEBUG implies Py_DEBUG.

Py_DEBUG

Compiling the interpreter with the Py_DEBUG macro defined produces what is generally meant by a debug build of Python. Py_DEBUG is enabled in the Unix build by adding --with-pydebug to the ./configure command. It is also implied by the presence of the not-Python-specific _DEBUG macro. When Py_DEBUG is enabled in the Unix build, compiler optimization is disabled.

And it is guaranteed by the following code on Windows.

cpython/PC/pyconfig.h.in

Lines 379 to 381 in 4940d96

#ifdef _DEBUG
# define Py_DEBUG
#endif

All platform-non-specific code and Unix-specific code is using the Python-specific Py_DEBUG macro. It would be nice to use Py_DEBUG in Windows-related C code either. It could improve the code readability and maintainability.

Linked PRs

@picnixz picnixz added type-feature A feature request or enhancement OS-windows interpreter-core (Objects, Python, Grammar, and Parser dirs) extension-modules C modules in the Modules dir labels Mar 31, 2025
@picnixz
Copy link
Member

picnixz commented Mar 31, 2025

cc @zooba

@tanmayadmuthe

This comment has been minimized.

@picnixz
Copy link
Member

picnixz commented Mar 31, 2025

@tanmayadmuthe Please avoid using AI-generated answers that do not help in the discussion.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
extension-modules C modules in the Modules dir interpreter-core (Objects, Python, Grammar, and Parser dirs) OS-windows type-feature A feature request or enhancement
Projects
None yet
3 participants