Commit 1df37c65 authored by David Malcolm's avatar David Malcolm

#17833: merge with 3.3

parents 5c29bb33 d08b2101
...@@ -215,6 +215,9 @@ Library ...@@ -215,6 +215,9 @@ Library
Tests Tests
----- -----
- Issue #17833: Fix test_gdb failures seen on machines where debug symbols
for glibc are available (seen on PPC64 Linux).
- Issue #7855: Add tests for ctypes/winreg for issues found in IronPython. - Issue #7855: Add tests for ctypes/winreg for issues found in IronPython.
Initial patch by Dino Viehland. Initial patch by Dino Viehland.
......
...@@ -1462,7 +1462,7 @@ class Frame(object): ...@@ -1462,7 +1462,7 @@ class Frame(object):
# This assumes the _POSIX_THREADS version of Python/ceval_gil.h: # This assumes the _POSIX_THREADS version of Python/ceval_gil.h:
name = self._gdbframe.name() name = self._gdbframe.name()
if name: if name:
return name.startswith('pthread_cond_timedwait') return 'pthread_cond_timedwait' in name
def is_gc_collect(self): def is_gc_collect(self):
'''Is this frame "collect" within the garbage-collector?''' '''Is this frame "collect" within the garbage-collector?'''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment