Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-106320: Remove private _PyList function#108451
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Move private functions to the internal C API (pycore_list.h):* _PyList_Extend()* _PyList_DebugMallocStats()No longer export these functions.
scoder commentedOct 20, 2023 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
|
I created issuegh-111138 to discuss it. |
This private function is no longer exported in Python 3.13.It is possible that a PyList_Extend() function-like macro may be addedbefore Python 3.13 final, but using PyList_SetSlice() directly willstill work.python/cpython#108451python/cpython#111138
This private function is no longer exported in Python 3.13.It is possible that a PyList_Extend() function-like macro may be addedbefore Python 3.13 final, but using PyList_SetSlice() directly willstill work.python/cpython#108451python/cpython#111138
Uh oh!
There was an error while loading.Please reload this page.
Move private functions to the internal C API (pycore_list.h):
No longer export these functions.