diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-12-18 23:22:01 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-12-18 23:22:01 (GMT) |
commit | 81b61bdc1a0c73f843ec5c8321fda3b52541c8d8 (patch) | |
tree | 71d0e7cd7e449b8fa34bb9c5555f075cb341b91f /Lib/tempfile.py | |
parent | 8d3ce5a6b3b275fe58af51fe19a915216f69d3c9 (diff) | |
download | cpython-81b61bdc1a0c73f843ec5c8321fda3b52541c8d8.zip cpython-81b61bdc1a0c73f843ec5c8321fda3b52541c8d8.tar.gz cpython-81b61bdc1a0c73f843ec5c8321fda3b52541c8d8.tar.bz2 |
TemporaryFileWrapper: fixed typo in new comment.
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 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 |