Issue #18743: Fix references to non-existant "StringIO" module

in docstrings and comments.
This commit is contained in:
Serhiy Storchaka 2013-08-29 11:35:43 +03:00
parent 15e6590774
commit 50254c57cd
8 changed files with 15 additions and 21 deletions

View file

@ -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()