Skip to content

gh-116738: Make the array built in module safe for free threaded python #120103

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

Closed
2 changes: 1 addition & 1 deletion Include/internal/pycore_pymem.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ extern int _PyMem_SetupAllocators(PyMemAllocatorName allocator);
extern int _PyMem_DebugEnabled(void);

// Enqueue a pointer to be freed possibly after some delay.
extern void _PyMem_FreeDelayed(void *ptr);
PyAPI_FUNC(void) _PyMem_FreeDelayed(void *ptr);

// Enqueue an object to be freed possibly after some delay
extern void _PyObject_FreeDelayed(void *ptr);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Make array builtin module safe for FTPython.
Loading
Loading