]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mark Hammond: Uncomment call to delete test data when done.
authorFred Drake <fdrake@acm.org>
Sat, 1 Apr 2000 05:25:57 +0000 (05:25 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 1 Apr 2000 05:25:57 +0000 (05:25 +0000)
Lib/test/test_winreg.py

index 1c68e219aa98bedd4a579503e1f31506fc6aa18c..1af095abef21d76b657b7c199dc56faab7c11148 100644 (file)
@@ -122,7 +122,7 @@ def DeleteTestData(root_key):
 def TestAll(root_key):
     WriteTestData(root_key)
     ReadTestData(root_key)
-#    DeleteTestData(root_key)
+    DeleteTestData(root_key)
 
 # Test on my local machine.
 TestAll(HKEY_CURRENT_USER)