diff options
author | pdox <pdox@alum.mit.edu> | 2017-10-26 06:03:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2017-10-26 06:03:01 (GMT) |
commit | 1896793520a49a6f97ae360c0b288967e56b005e (patch) | |
tree | b757b6b4691e52d5f3d22177ac23de50ad7d1d25 /Include/internal/ceval.h | |
parent | 32318930da70ff03320ec50813b843e7db6fbc2e (diff) | |
download | cpython-1896793520a49a6f97ae360c0b288967e56b005e.zip cpython-1896793520a49a6f97ae360c0b288967e56b005e.tar.gz cpython-1896793520a49a6f97ae360c0b288967e56b005e.tar.bz2 |
bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098)
Diffstat (limited to 'Include/internal/ceval.h')
-rw-r--r-- | Include/internal/ceval.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/internal/ceval.h b/Include/internal/ceval.h index 57db9b1..cdabb95 100644 --- a/Include/internal/ceval.h +++ b/Include/internal/ceval.h @@ -29,7 +29,6 @@ struct _pending_calls { struct _ceval_runtime_state { int recursion_limit; - int check_recursion_limit; /* Records whether tracing is on for any thread. Counts the number of threads for which tstate->c_tracefunc is non-NULL, so if the value is 0, we know we don't have to check this thread's |