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.
This commit is contained in:
Neal Norwitz 2005-11-24 23:28:37 +00:00
parent 3715c3e576
commit 2fcf206a6f
1 changed files with 2 additions and 1 deletions

View 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