Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25cd091 commit d08b210Copy full SHA for d08b210
2 files changed
Misc/NEWS
@@ -168,6 +168,9 @@ IDLE
168
Tests
169
-----
170
171
+- Issue #17833: Fix test_gdb failures seen on machines where debug symbols
172
+ for glibc are available (seen on PPC64 Linux).
173
+
174
- Issue #7855: Add tests for ctypes/winreg for issues found in IronPython.
175
Initial patch by Dino Viehland.
176
Tools/gdb/libpython.py
@@ -1460,7 +1460,7 @@ def is_waiting_for_gil(self):
1460
# This assumes the _POSIX_THREADS version of Python/ceval_gil.h:
1461
name = self._gdbframe.name()
1462
if name:
1463
- return name.startswith('pthread_cond_timedwait')
+ return 'pthread_cond_timedwait' in name
1464
1465
def is_gc_collect(self):
1466
'''Is this frame "collect" within the garbage-collector?'''
0 commit comments