From: Fred Drake Date: Thu, 29 Jun 2000 19:42:00 +0000 (+0000) Subject: The low-level interface is now in _winreg; update the import here. X-Git-Tag: v2.0b1~1283 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=252af9ca27be699c97644923e71d48a71dca406a;p=thirdparty%2FPython%2Fcpython.git The low-level interface is now in _winreg; update the import here. --- diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py index 5eb29865dbe8..b2f87d5e0491 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"