summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-04-01 05:25:57 (GMT)
committerFred Drake <fdrake@acm.org>2000-04-01 05:25:57 (GMT)
commitd9b0f265155360998e6e9269685e03068527bb68 (patch)
treed09b4a877c441b524b38c1ec28d14000d5530f3e /Lib
parent9a257b4fd410fdc57f3d5dfaff247ad2cfe5fab4 (diff)
downloadcpython-d9b0f265155360998e6e9269685e03068527bb68.zip
cpython-d9b0f265155360998e6e9269685e03068527bb68.tar.gz
cpython-d9b0f265155360998e6e9269685e03068527bb68.tar.bz2
Mark Hammond: Uncomment call to delete test data when done.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_winreg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py
index 1c68e21..1af095a 100644
--- a/Lib/test/test_winreg.py
+++ b/Lib/test/test_winreg.py
@@ -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)