summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-12-18 23:22:01 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-12-18 23:22:01 (GMT)
commit81b61bdc1a0c73f843ec5c8321fda3b52541c8d8 (patch)
tree71d0e7cd7e449b8fa34bb9c5555f075cb341b91f /Lib
parent8d3ce5a6b3b275fe58af51fe19a915216f69d3c9 (diff)
downloadcpython-81b61bdc1a0c73f843ec5c8321fda3b52541c8d8.zip
cpython-81b61bdc1a0c73f843ec5c8321fda3b52541c8d8.tar.gz
cpython-81b61bdc1a0c73f843ec5c8321fda3b52541c8d8.tar.bz2
TemporaryFileWrapper: fixed typo in new comment.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/tempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index d488063..417b749 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -130,7 +130,7 @@ class TemporaryFileWrapper:
"""
# Cache the unlinker so we don't get spurious errors at shutdown
- # when the module-level "os" in None'd out. Note that this must
+ # when the module-level "os" is None'd out. Note that this must
# be referenced as self.unlink, because the name TemporaryFileWrapper
# may also get None'd out before __del__ is called.
unlink = os.unlink