[Python-checkins] CVS: python/dist/src/Lib tempfile.py,1.33,1.34

Tim Peters tim_one@users.sourceforge.net
Tue, 18 Dec 2001 15:22:03 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv28636/python/Lib

Modified Files:
	tempfile.py 
Log Message:
TemporaryFileWrapper:  fixed typo in new comment.


Index: tempfile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tempfile.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** tempfile.py	2001/12/18 22:32:40	1.33
--- tempfile.py	2001/12/18 23:22:01	1.34
***************
*** 131,135 ****
  
      # 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
      # be referenced as self.unlink, because the name TemporaryFileWrapper
      # may also get None'd out before __del__ is called.
--- 131,135 ----
  
      # Cache the unlinker so we don't get spurious errors at shutdown
!     # 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.