summaryrefslogtreecommitdiffstats
path: root/Lib/test/pickletester.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-08-29 08:39:48 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-08-29 08:39:48 (GMT)
commit48e6a8c88a69adbdc7c3bf9adef5696828b1c5fe (patch)
tree45c7d23b65375342454fa469c9479b22f6c69a77 /Lib/test/pickletester.py
parenta8c2a8aa8dcf236355348adf696d2aae8fbe45b2 (diff)
parent50254c57cd7a562441b7ff385d59c0255301f3ff (diff)
downloadcpython-48e6a8c88a69adbdc7c3bf9adef5696828b1c5fe.zip
cpython-48e6a8c88a69adbdc7c3bf9adef5696828b1c5fe.tar.gz
cpython-48e6a8c88a69adbdc7c3bf9adef5696828b1c5fe.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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
index 7e6e758..1971120 100644
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -1552,14 +1552,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()