diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-04 01:15:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 01:15:09 (GMT) |
commit | 0fd2c300c2a85b3b227a907b2a39ef79fa86d850 (patch) | |
tree | ffe391ade17e6d581878f22016b065f7306f3fca /Include/cpython | |
parent | 9535aff9421f0a5639f6e4c4bb0f07a743ea8dba (diff) | |
download | cpython-0fd2c300c2a85b3b227a907b2a39ef79fa86d850.zip cpython-0fd2c300c2a85b3b227a907b2a39ef79fa86d850.tar.gz cpython-0fd2c300c2a85b3b227a907b2a39ef79fa86d850.tar.bz2 |
Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)
This reverts commit 396e0a8d9dc65453cb9d53500d0a620602656cfe.
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/pystate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/cpython/pystate.h b/Include/cpython/pystate.h index 74e7fc9..94b0809 100644 --- a/Include/cpython/pystate.h +++ b/Include/cpython/pystate.h @@ -110,9 +110,9 @@ struct _ts { * if the thread holds the last reference to the lock, decref'ing the * lock will delete the lock, and that may trigger arbitrary Python code * if there's a weakref, with a callback, to the lock. But by this time - * _PyRuntimeState.gilstate.tstate_current is already NULL, so only the - * simplest of C code can be allowed to run (in particular it must not be - * possible to release the GIL). + * _PyRuntime.gilstate.tstate_current is already NULL, so only the simplest + * of C code can be allowed to run (in particular it must not be possible to + * release the GIL). * So instead of holding the lock directly, the tstate holds a weakref to * the lock: that's the value of on_delete_data below. Decref'ing a * weakref is harmless. |