diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-01-14 00:09:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 00:09:24 (GMT) |
commit | 324908ba936d5d262026deebb81f050803848c41 (patch) | |
tree | a45363816b664cbe18eb899e33688d7f3bc09e59 /Python/ceval.c | |
parent | d4e64cd4b0ea431d4e371f9b0a25f6b75a069dc1 (diff) | |
download | cpython-324908ba936d5d262026deebb81f050803848c41.zip cpython-324908ba936d5d262026deebb81f050803848c41.tar.gz cpython-324908ba936d5d262026deebb81f050803848c41.tar.bz2 |
bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)
https://bugs.python.org/issue45953
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index d33cd4e..eed902f 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -737,10 +737,6 @@ Py_MakePendingCalls(void) /* The interpreter's recursion limit */ -#ifndef Py_DEFAULT_RECURSION_LIMIT -# define Py_DEFAULT_RECURSION_LIMIT 1000 -#endif - void _PyEval_InitRuntimeState(struct _ceval_runtime_state *ceval) { |