From: Tim Peters Date: Tue, 18 Dec 2001 23:22:01 +0000 (+0000) Subject: TemporaryFileWrapper: fixed typo in new comment. X-Git-Tag: v2.2.1c1~306 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=81b61bdc1a0c73f843ec5c8321fda3b52541c8d8;p=python TemporaryFileWrapper: fixed typo in new comment. --- diff --git a/Lib/tempfile.py b/Lib/tempfile.py index d4880637f0..417b749391 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