Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1df37c65
Commit
1df37c65
authored
May 06, 2013
by
David Malcolm
Browse files
Options
Browse Files
Download
Plain Diff
#17833: merge with 3.3
parents
5c29bb33
d08b2101
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Misc/NEWS
Misc/NEWS
+3
-0
Tools/gdb/libpython.py
Tools/gdb/libpython.py
+1
-1
No files found.
Misc/NEWS
View file @
1df37c65
...
...
@@ -215,6 +215,9 @@ Library
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
.
Initial
patch
by
Dino
Viehland
.
...
...
Tools/gdb/libpython.py
View file @
1df37c65
...
...
@@ -1462,7 +1462,7 @@ class Frame(object):
# This assumes the _POSIX_THREADS version of Python/ceval_gil.h:
name
=
self
.
_gdbframe
.
name
()
if
name
:
return
name
.
startswith
(
'pthread_cond_timedwait'
)
return
'pthread_cond_timedwait'
in
name
def
is_gc_collect
(
self
):
'''Is this frame "collect" within the garbage-collector?'''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment