summaryrefslogtreecommitdiff
path: root/Lib/test/test_winreg.py
diff options
context:
space:
mode:
authorPaul Prescod <prescod@prescod.net>2000-07-04 03:38:10 +0000
committerPaul Prescod <prescod@prescod.net>2000-07-04 03:38:10 +0000
commita24d5080b1965c9b22a7a4734e806d5e02c67f57 (patch)
tree5704a9d80184b20d7dc69663508f1a439bba8aac /Lib/test/test_winreg.py
parent58ad399336a8d5f54b7486f6ca5f74880ac43f4a (diff)
downloadcpython-a24d5080b1965c9b22a7a4734e806d5e02c67f57.tar.gz
Removed some tabs.
Diffstat (limited to 'Lib/test/test_winreg.py')
-rw-r--r--Lib/test/test_winreg.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py
index b2f87d5e04..0eb798ff06 100644
--- a/Lib/test/test_winreg.py
+++ b/Lib/test/test_winreg.py
@@ -42,18 +42,18 @@ def WriteTestData(root_key):
int_sub_key = int(sub_key)
CloseKey(sub_key)
try:
- QueryInfoKey(int_sub_key)
- raise RuntimeError, "It appears the CloseKey() function does not close the actual key!"
+ QueryInfoKey(int_sub_key)
+ raise RuntimeError, "It appears the CloseKey() function does not close the actual key!"
except EnvironmentError:
- pass
+ pass
# ... and close that key that way :-)
int_key = int(key)
key.Close()
try:
- QueryInfoKey(int_key)
- raise RuntimeError, "It appears the key.Close() function does not close the actual key!"
+ QueryInfoKey(int_key)
+ raise RuntimeError, "It appears the key.Close() function does not close the actual key!"
except EnvironmentError:
- pass
+ pass
def ReadTestData(root_key):
# Check we can get default value for this key.