summaryrefslogtreecommitdiffstats
path: root/Include/internal
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-08 20:10:53 (GMT)
committerGitHub <noreply@github.com>2020-04-08 20:10:53 (GMT)
commitcfc3c2f8b34d3864717ab584c5b6c260014ba55a (patch)
treea92ab42422ebb899372b02a0eba52c9c6235bea0 /Include/internal
parentdda5d6e071c6a9d65993d45b90232565cfad2cde (diff)
downloadcpython-cfc3c2f8b34d3864717ab584c5b6c260014ba55a.zip
cpython-cfc3c2f8b34d3864717ab584c5b6c260014ba55a.tar.gz
cpython-cfc3c2f8b34d3864717ab584c5b6c260014ba55a.tar.bz2
bpo-37127: Remove _pending_calls.finishing (GH-19439)
Diffstat (limited to 'Include/internal')
-rw-r--r--Include/internal/pycore_pystate.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/internal/pycore_pystate.h b/Include/internal/pycore_pystate.h
index 50d906c..fba0b6f 100644
--- a/Include/internal/pycore_pystate.h
+++ b/Include/internal/pycore_pystate.h
@@ -16,7 +16,6 @@ extern "C" {
/* ceval state */
struct _pending_calls {
- int finishing;
PyThread_type_lock lock;
/* Request for running pending calls. */
_Py_atomic_int calls_to_do;