summaryrefslogtreecommitdiffstats
path: root/Tools/gdb
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-08-29 08:35:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-08-29 08:35:43 (GMT)
commit50254c57cd7a562441b7ff385d59c0255301f3ff (patch)
treed9b63adc089c3e60a04668bcb22af1c706a68971 /Tools/gdb
parent15e6590774956a5bbb3a901bf5328869eb44ad49 (diff)
downloadcpython-50254c57cd7a562441b7ff385d59c0255301f3ff.zip
cpython-50254c57cd7a562441b7ff385d59c0255301f3ff.tar.gz
cpython-50254c57cd7a562441b7ff385d59c0255301f3ff.tar.bz2
Issue #18743: Fix references to non-existant "StringIO" module
in docstrings and comments.
Diffstat (limited to 'Tools/gdb')
-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 9f5e8b4..a85f505 100644
--- a/Tools/gdb/libpython.py
+++ b/Tools/gdb/libpython.py
@@ -121,7 +121,7 @@ class StringTruncated(RuntimeError):
pass
class TruncatedStringIO(object):
- '''Similar to cStringIO, but can truncate the output by raising a
+ '''Similar to io.StringIO, but can truncate the output by raising a
StringTruncated exception'''
def __init__(self, maxlen=None):
self._val = ''