Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1df37c6

Browse files
committed
#17833: merge with 3.3
2 parents 5c29bb3 + d08b210 commit 1df37c6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,9 @@ Library
215215
Tests
216216
-----
217217

218+
- Issue #17833: Fix test_gdb failures seen on machines where debug symbols
219+
for glibc are available (seen on PPC64 Linux).
220+
218221
- Issue #7855: Add tests for ctypes/winreg for issues found in IronPython.
219222
Initial patch by Dino Viehland.
220223

Tools/gdb/libpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ def is_waiting_for_gil(self):
14621462
# This assumes the _POSIX_THREADS version of Python/ceval_gil.h:
14631463
name = self._gdbframe.name()
14641464
if name:
1465-
return name.startswith('pthread_cond_timedwait')
1465+
return 'pthread_cond_timedwait' in name
14661466

14671467
def is_gc_collect(self):
14681468
'''Is this frame "collect" within the garbage-collector?'''

0 commit comments

Comments
 (0)