Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Next Next commit
Update obmalloc.c
Co-authored-by: Victor Stinner <[email protected]>
  • Loading branch information
ZeroIntensity and vstinner authored Dec 2, 2024
commit b2c0dfcdda183ec020cc5ae06d4a215e790c2e73
2 changes: 1 addition & 1 deletion Objects/obmalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2918,7 +2918,7 @@ _PyMem_DebugCheckGIL(const char *func)
_Py_FatalErrorFunc(func,
"Python memory allocator called "
"without an active thread state. "
"(Are you trying to call it inside of a Py_BEGIN_ALLOW_THREADS block?)");
"Are you trying to call it inside of a Py_BEGIN_ALLOW_THREADS block?");
#endif
}
}
Expand Down