| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
| define_macros=[('WITH_Py_LIMITED_API', 1)])) | ||
| else: | ||
| # Debug mode: Build xxlimited with the full API | ||
| # (which is compatible with the limited one) |
There was a problem hiding this comment.
Hum, I'm disappointed that CPython doesn't even support its own stable ABI in debug mode. So I created https://bugs.python.org/issue43688 to also support the limited C API in debug mode.
Sorry, something went wrong.
|
|
||
| /* xxlimited with the limited API. */ | ||
| #ifdef WITH_Py_LIMITED_API | ||
| # define Py_LIMITED_API 0x03100000 |
There was a problem hiding this comment.
0x03100000 is wrong: it must be 0x030a0000 (the bug exists in the current code). I fixed the issue in my PR #25131.
Sorry, something went wrong.
|
Oops. I forgot to publish my review. In the meanwhile, I fixed both issues in https://bugs.python.org/issue43688. I created a new PR: PR #25151. |
Sorry, something went wrong.
|
I merged PR #25151 instead, I marked you as a co-author of my change ;-) |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
https://bugs.python.org/issue41111