8000 bpo-41111: Build limited C API without Py_TRACE_REFS macro. by shihai1991 · Pull Request #25180 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-41111: Build limited C API without Py_TRACE_REFS macro. #25180

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

Merged
merged 2 commits into from
Apr 6, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
apply victor's comment
  • Loading branch information
shihai1991 committed Apr 4, 2021
commit dc080bd8341c9fb0552d947bb4f798ce001f4f26
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1864,7 +1864,7 @@ def detect_modules(self):
## # Uncomment these lines if you want to play with xxmodule.c
## self.add(Extension('xx', ['xxmodule.c']))

# Build limited C API without Py_TRACE_REFS macro
# The limited C API is not compatible with the Py_TRACE_REFS macro.
if not sysconfig.get_config_var('Py_TRACE_REFS'):
self.add(Extension('xxlimited', ['xxlimited.c']))
self.add(Extension('xxlimited_35', ['xxlimited_35.c']))
Expand Down
0