Victor Stinner 17c68b8107
bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279)
Replace a few Py_FatalError() calls if tstate is NULL with
assert(tstate != NULL) in ceval.c.

PyEval_AcquireThread(), PyEval_ReleaseThread() and
PyEval_RestoreThread() must never be called with a NULL tstate.
2020-01-30 12:20:48 +01:00
..
2019-09-21 12:57:44 -07:00
2016-09-07 09:26:18 -07:00
2017-09-14 18:13:16 -07:00

Miscellaneous source files for the main Python shared library