diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-29 08:35:43 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-29 08:35:43 (GMT) |
commit | 50254c57cd7a562441b7ff385d59c0255301f3ff (patch) | |
tree | d9b63adc089c3e60a04668bcb22af1c706a68971 /Lib/test/pickletester.py | |
parent | 15e6590774956a5bbb3a901bf5328869eb44ad49 (diff) | |
download | cpython-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 'Lib/test/pickletester.py')
-rw-r--r-- | Lib/test/pickletester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 3423462..052290d 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -1547,14 +1547,14 @@ class AbstractPicklerUnpicklerObjectTests(unittest.TestCase): pickler.dump(data) first_pickled = f.getvalue() - # Reset StringIO object. + # Reset BytesIO object. f.seek(0) f.truncate() pickler.dump(data) second_pickled = f.getvalue() - # Reset the Pickler and StringIO objects. + # Reset the Pickler and BytesIO objects. pickler.clear_memo() f.seek(0) f.truncate() |