From: Fred Drake <fdrake@acm.org> 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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=252af9ca27be699c97644923e71d48a71dca406a;p=python 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 5eb29865db..b2f87d5e04 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"