diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-29 08:39:48 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-29 08:39:48 (GMT) |
commit | 48e6a8c88a69adbdc7c3bf9adef5696828b1c5fe (patch) | |
tree | 45c7d23b65375342454fa469c9479b22f6c69a77 /Lib/tempfile.py | |
parent | a8c2a8aa8dcf236355348adf696d2aae8fbe45b2 (diff) | |
parent | 50254c57cd7a562441b7ff385d59c0255301f3ff (diff) | |
download | cpython-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.py | 2 |
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 |