summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-06-29 19:42:00 (GMT)
committerFred Drake <fdrake@acm.org>2000-06-29 19:42:00 (GMT)
commit252af9ca27be699c97644923e71d48a71dca406a (patch)
treea1c11649bccafac057f30b6ef997e56ec28ced45
parent55c3819e6a055264f1fd9853ab2ed022a84ef626 (diff)
downloadcpython-252af9ca27be699c97644923e71d48a71dca406a.zip
cpython-252af9ca27be699c97644923e71d48a71dca406a.tar.gz
cpython-252af9ca27be699c97644923e71d48a71dca406a.tar.bz2
The low-level interface is now in _winreg; update the import here.
-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 5eb2986..b2f87d5 100644
--- a/Lib/test/test_winreg.py
+++ b/Lib/test/test_winreg.py
@@ -1,7 +1,7 @@
# Test the windows specific win32reg module.
# Only win32reg functions not hit here: FlushKey, LoadKey and SaveKey
-from winreg import *
+from _winreg import *
import os, sys
test_key_name = "SOFTWARE\\Python Registry Test Key - Delete Me"