Commit 0c34a6af authored by Georg Brandl's avatar Georg Brandl

#5624: _winreg is winreg in Python 3.

parent e7ed75ca
......@@ -48,8 +48,8 @@ class msvc9compilerTestCase(unittest.TestCase):
v = Reg.get_value(path, "lfitalic")
self.assert_(v in (0, 1))
import _winreg
HKCU = _winreg.HKEY_CURRENT_USER
import winreg
HKCU = winreg.HKEY_CURRENT_USER
keys = Reg.read_keys(HKCU, 'xxxx')
self.assertEquals(keys, None)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment