summaryrefslogtreecommitdiffstats
path: root/Lib/tempfile.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/tempfile.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/tempfile.py')
-rw-r--r--Lib/tempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index 1eff59c..1eed23a 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -501,7 +501,7 @@ class SpooledTemporaryFile:
# The method caching trick from NamedTemporaryFile
# won't work here, because _file may change from a
- # _StringIO instance to a real file. So we list
+ # BytesIO/StringIO instance to a real file. So we list
# all the methods directly.
# Context management protocol