diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-05-27 23:38:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 23:38:01 (GMT) |
commit | caa279d6fd5f151e57f891cd4f6ba51b532501c6 (patch) | |
tree | c19c87efdefab0b4e4a5291896cfb86e37ec90f2 /Include/internal/pycore_runtime.h | |
parent | e6a57678cafe18ca132ee9510252168fcc392a8d (diff) | |
download | cpython-caa279d6fd5f151e57f891cd4f6ba51b532501c6.zip cpython-caa279d6fd5f151e57f891cd4f6ba51b532501c6.tar.gz cpython-caa279d6fd5f151e57f891cd4f6ba51b532501c6.tar.bz2 |
bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)
This was added for bpo-40514 (gh-84694) to test out a per-interpreter GIL. However, it has since proven unnecessary to keep the experiment in the repo. (It can be done as a branch in a fork like normal.) So here we are removing:
* the configure option
* the macro
* the code enabled by the macro
Diffstat (limited to 'Include/internal/pycore_runtime.h')
-rw-r--r-- | Include/internal/pycore_runtime.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/internal/pycore_runtime.h b/Include/internal/pycore_runtime.h index 18191c3..ae63ae7 100644 --- a/Include/internal/pycore_runtime.h +++ b/Include/internal/pycore_runtime.h @@ -23,9 +23,7 @@ struct _ceval_runtime_state { the main thread of the main interpreter can handle signals: see _Py_ThreadCanHandleSignals(). */ _Py_atomic_int signals_pending; -#ifndef EXPERIMENTAL_ISOLATED_SUBINTERPRETERS struct _gil_runtime_state gil; -#endif }; /* GIL state */ |