summaryrefslogtreecommitdiffstats
path: root/Tools/gdb/libpython.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-01-27 04:20:14 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-01-27 04:20:14 (GMT)
commit3f5db3940ff71428d1eecb3d4eebe68d9c3d216d (patch)
treeef8c20da3ad9050700786a6999e1094f7fe397ba /Tools/gdb/libpython.py
parent1c1cadbbca21f75733bb201e7c94863b6e6ed206 (diff)
downloadcpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.zip
cpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.tar.gz
cpython-3f5db3940ff71428d1eecb3d4eebe68d9c3d216d.tar.bz2
Fix a few typos and a double semicolon. Patch by Eitan Adler.
Diffstat (limited to 'Tools/gdb/libpython.py')
-rw-r--r--Tools/gdb/libpython.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py
index 368a7d5..cab226e 100644
--- a/Tools/gdb/libpython.py
+++ b/Tools/gdb/libpython.py
@@ -1463,7 +1463,7 @@ class Frame(object):
return name.startswith('pthread_cond_timedwait')
def is_gc_collect(self):
- '''Is this frame "collect" within the the garbage-collector?'''
+ '''Is this frame "collect" within the garbage-collector?'''
return self._gdbframe.name() == 'collect'
def get_pyop(self):