diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-08 20:10:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-08 20:10:53 (GMT) |
commit | cfc3c2f8b34d3864717ab584c5b6c260014ba55a (patch) | |
tree | a92ab42422ebb899372b02a0eba52c9c6235bea0 /Include/internal | |
parent | dda5d6e071c6a9d65993d45b90232565cfad2cde (diff) | |
download | cpython-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.h | 1 |
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; |