]> granicus.if.org Git - python/commitdiff
Fix typo in comment.
authorNeal Norwitz <nnorwitz@gmail.com>
Thu, 24 Nov 2005 23:28:37 +0000 (23:28 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Thu, 24 Nov 2005 23:28:37 +0000 (23:28 +0000)
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.

Lib/test/test_mutants.py

index d495704c688caf3e9f17d67cb03c8a7b2282b779..df58944d884f53d06131c9807ad3482aadd2755d 100644 (file)
@@ -36,7 +36,7 @@ dict2 = {}
 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 @@ finally:
     os.unlink(TESTFN)
 
 del dict
+del dict1, dict2, dict1keys, dict2keys