diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-03-31 18:32:17 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-03-31 18:32:17 (GMT) |
commit | 597ebab74466593dc05a35faad0f5c316900153b (patch) | |
tree | aab4f8b1ee66ddd3fb4ad4a841509eab43b5ad1f /Lib/test/test_winreg.py | |
parent | 9e0b363629d62259965a4bc2806370b152d8baac (diff) | |
download | cpython-597ebab74466593dc05a35faad0f5c316900153b.zip cpython-597ebab74466593dc05a35faad0f5c316900153b.tar.gz cpython-597ebab74466593dc05a35faad0f5c316900153b.tar.bz2 |
A few more test skips via import_module, and change import_module to
return the error message produced by importlib, so that if an import
in the package whose import is being wrapped is what failed the skip
message will contain the name of that module instead of the name of the
wrapped module. Also fixed formatting of some previous comments.
Diffstat (limited to 'Lib/test/test_winreg.py')
-rw-r--r-- | Lib/test/test_winreg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py index 1dbccc0..1eaa930 100644 --- a/Lib/test/test_winreg.py +++ b/Lib/test/test_winreg.py @@ -5,9 +5,9 @@ import os, sys import unittest from test import test_support -#Do this first so test will be skipped if module doesn't exist +# Do this first so test will be skipped if module doesn't exist test_support.import_module('_winreg') -#Now import everything +# Now import everything from _winreg import * test_key_name = "SOFTWARE\\Python Registry Test Key - Delete Me" |