summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorPaul Prescod <prescod@prescod.net>2000-07-04 03:38:10 (GMT)
committerPaul Prescod <prescod@prescod.net>2000-07-04 03:38:10 (GMT)
commit99b84bdaad28f6deba1462974cbe02ead36cbf75 (patch)
tree121a1a3aafb3405363dd24af5e51c18dd4eb196e /Lib
parentfe38d2998fa18c0527e1e3bfca844fdd604fed8b (diff)
downloadcpython-99b84bdaad28f6deba1462974cbe02ead36cbf75.zip
cpython-99b84bdaad28f6deba1462974cbe02ead36cbf75.tar.gz
cpython-99b84bdaad28f6deba1462974cbe02ead36cbf75.tar.bz2
Removed some tabs.
Diffstat (limited to 'Lib')
-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 b2f87d5..0eb798f 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.