]> granicus.if.org Git - python/commitdiff
TemporaryFileWrapper: fixed typo in new comment.
authorTim Peters <tim.peters@gmail.com>
Tue, 18 Dec 2001 23:22:01 +0000 (23:22 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 18 Dec 2001 23:22:01 +0000 (23:22 +0000)
Lib/tempfile.py

index d4880637f08d2bcc9a54856d4e4bf0806e4bb906..417b7493917aeba3f213054ca0957f77b85e52b2 100644 (file)
@@ -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