Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 378 Bytes

2024-02-21-10-54-27.gh-issue-115754.RSL-q0.rst

File metadata and controls

6 lines (6 loc) · 378 Bytes

In the limited C API and the stable ABI, implement Py_None, Py_False and Py_True constants are symbols, rather than implementing them as macros. So they can be loaded by dlopen/dlsym in an embedded in Python, rather than having to reimplement these macros manually. In the non-limited C API, these constants are still implemented as macros. Patch by Victor Stinner.