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.
2 parents 5c29bb3 + d08b210 commit 1df37c6Copy full SHA for 1df37c6
2 files changed
Misc/NEWS
@@ -215,6 +215,9 @@ Library
215
Tests
216
-----
217
218
+- Issue #17833: Fix test_gdb failures seen on machines where debug symbols
219
+ for glibc are available (seen on PPC64 Linux).
220
+
221
- Issue #7855: Add tests for ctypes/winreg for issues found in IronPython.
222
Initial patch by Dino Viehland.
223
Tools/gdb/libpython.py
@@ -1462,7 +1462,7 @@ def is_waiting_for_gil(self):
1462
# This assumes the _POSIX_THREADS version of Python/ceval_gil.h:
1463
name = self._gdbframe.name()
1464
if name:
1465
- return name.startswith('pthread_cond_timedwait')
+ return 'pthread_cond_timedwait' in name
1466
1467
def is_gc_collect(self):
1468
'''Is this frame "collect" within the garbage-collector?'''
0 commit comments