diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-29 11:35:43 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-29 11:35:43 +0300 |
commit | 50254c57cd7a562441b7ff385d59c0255301f3ff (patch) | |
tree | d9b63adc089c3e60a04668bcb22af1c706a68971 /Tools/gdb/libpython.py | |
parent | 15e6590774956a5bbb3a901bf5328869eb44ad49 (diff) | |
download | cpython-git-50254c57cd7a562441b7ff385d59c0255301f3ff.tar.gz |
Issue #18743: Fix references to non-existant "StringIO" module
in docstrings and comments.
Diffstat (limited to 'Tools/gdb/libpython.py')
-rw-r--r-- | Tools/gdb/libpython.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py index 9f5e8b4e2c..a85f50595c 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 = '' |