mirror of https://github.com/python/cpython
gh-109894: Fix initialization of static `MemoryError` in subinterpreter (gh-110911)
Fixes #109894 * set `interp.static_objects.last_resort_memory_error.args` to empty tuple to avoid crash on `PyErr_Display()` call * allow `_PyExc_InitGlobalObjects()` to be called on subinterpreter init --------- Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
This commit is contained in:
parent
96cbd1e1db
commit
47d3e2ed93
|
@ -177,6 +177,7 @@ extern PyTypeObject _PyExc_MemoryError;
|
|||
}, \
|
||||
.last_resort_memory_error = { \
|
||||
_PyObject_HEAD_INIT(&_PyExc_MemoryError) \
|
||||
.args = (PyObject*)&_Py_SINGLETON(tuple_empty) \
|
||||
}, \
|
||||
}, \
|
||||
}, \
|
||||
|
|
|
@ -1791,6 +1791,20 @@ class ExceptionTests(unittest.TestCase):
|
|||
|
||||
gc_collect()
|
||||
|
||||
def test_memory_error_in_subinterp(self):
|
||||
# gh-109894: subinterpreters shouldn't count on last resort memory error
|
||||
# when MemoryError is raised through PyErr_NoMemory() call,
|
||||
# and should preallocate memory errors as does the main interpreter.
|
||||
# interp.static_objects.last_resort_memory_error.args
|
||||
# should be initialized to empty tuple to avoid crash on attempt to print it.
|
||||
code = f"""if 1:
|
||||
import _testcapi
|
||||
_testcapi.run_in_subinterp(\"[0]*{sys.maxsize}\")
|
||||
exit(0)
|
||||
"""
|
||||
rc, _, err = script_helper.assert_python_ok("-c", code)
|
||||
self.assertIn(b'MemoryError', err)
|
||||
|
||||
|
||||
class NameErrorTests(unittest.TestCase):
|
||||
def test_name_error_has_name(self):
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fixed crash due to improperly initialized static :exc:`MemoryError` in subinterpreter.
|
|
@ -3700,10 +3700,6 @@ _PyExc_FiniTypes(PyInterpreterState *interp)
|
|||
PyStatus
|
||||
_PyExc_InitGlobalObjects(PyInterpreterState *interp)
|
||||
{
|
||||
if (!_Py_IsMainInterpreter(interp)) {
|
||||
return _PyStatus_OK();
|
||||
}
|
||||
|
||||
if (preallocate_memerrors() < 0) {
|
||||
return _PyStatus_NO_MEMORY();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue