diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-06-13 21:02:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-13 21:02:19 (GMT) |
commit | 757b402ea1c2c6b925a55a08fd844b065b6e082f (patch) | |
tree | cf4f2ea1aff52a2c7faa7181f3f9af01f732830f /Tools/c-analyzer | |
parent | 4e80082723b768df124f77d2b73b3ba6b584a735 (diff) | |
download | cpython-757b402ea1c2c6b925a55a08fd844b065b6e082f.zip cpython-757b402ea1c2c6b925a55a08fd844b065b6e082f.tar.gz cpython-757b402ea1c2c6b925a55a08fd844b065b6e082f.tar.bz2 |
gh-104812: Run Pending Calls in any Thread (gh-104813)
For a while now, pending calls only run in the main thread (in the main interpreter). This PR changes things to allow any thread run a pending call, unless the pending call was explicitly added for the main thread to run.
Diffstat (limited to 'Tools/c-analyzer')
-rw-r--r-- | Tools/c-analyzer/cpython/ignored.tsv | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/c-analyzer/cpython/ignored.tsv b/Tools/c-analyzer/cpython/ignored.tsv index 607976f..87d9b39 100644 --- a/Tools/c-analyzer/cpython/ignored.tsv +++ b/Tools/c-analyzer/cpython/ignored.tsv @@ -517,6 +517,7 @@ Modules/_testcapimodule.c - g_type_watchers_installed - Modules/_testimportmultiple.c - _barmodule - Modules/_testimportmultiple.c - _foomodule - Modules/_testimportmultiple.c - _testimportmultiple - +Modules/_testinternalcapi.c - pending_identify_result - Modules/_testmultiphase.c - Example_Type_slots - Modules/_testmultiphase.c - Example_Type_spec - Modules/_testmultiphase.c - Example_methods - |