diff options
author | Mark Shannon <mark@hotpy.org> | 2022-08-24 13:21:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 13:21:01 (GMT) |
commit | a4a9f2e879c0c9572e0cecbc702dc1dd31f80221 (patch) | |
tree | b79b68685fcff680ea2986b263cbb43b1c068bf2 /Tools/gdb | |
parent | 4de06e3cc0a58d73934f9a2759ad9cd2f6b031b0 (diff) | |
download | cpython-a4a9f2e879c0c9572e0cecbc702dc1dd31f80221.zip cpython-a4a9f2e879c0c9572e0cecbc702dc1dd31f80221.tar.gz cpython-a4a9f2e879c0c9572e0cecbc702dc1dd31f80221.tar.bz2 |
GH-96177: Move GIL and eval breaker code out of ceval.c into ceval_gil.c. (GH-96204)
Diffstat (limited to 'Tools/gdb')
-rwxr-xr-x | Tools/gdb/libpython.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py index 899cb6c..303409c 100755 --- a/Tools/gdb/libpython.py +++ b/Tools/gdb/libpython.py @@ -1752,7 +1752,7 @@ class Frame(object): def is_waiting_for_gil(self): '''Is this frame waiting on the GIL?''' - # This assumes the _POSIX_THREADS version of Python/ceval_gil.h: + # This assumes the _POSIX_THREADS version of Python/ceval_gil.c: name = self._gdbframe.name() if name: return (name == 'take_gil') |