[Python-checkins] commit of r41532 - python/trunk/Lib/test

neal.norwitz@python.org neal.norwitz at python.org
Fri Nov 25 00:28:42 CET 2005


Author: neal.norwitz
Date: Fri Nov 25 00:28:37 2005
New Revision: 41532

Modified:
   python/trunk/Lib/test/test_mutants.py
Log:
Fix typo in comment.

Delete globals which contain variable information at the end of the test.
This makes the test stable (no reported leaks) when running regrtest -R 
to find reference leaks.



Modified: python/trunk/Lib/test/test_mutants.py
==============================================================================
--- python/trunk/Lib/test/test_mutants.py	(original)
+++ python/trunk/Lib/test/test_mutants.py	Fri Nov 25 00:28:37 2005
@@ -36,7 +36,7 @@
 dict1keys = []
 dict2keys = []
 
-# Global flag telling maybe_mutate() wether to *consider* mutating.
+# Global flag telling maybe_mutate() whether to *consider* mutating.
 mutate = 0
 
 # If global mutate is true, consider mutating a dict.  May or may not
@@ -281,3 +281,4 @@
     os.unlink(TESTFN)
 
 del dict
+del dict1, dict2, dict1keys, dict2keys


More information about the Python-checkins mailing list