Patch #1448199: Release GIL around ConnectRegistry.

This commit is contained in:
Martin v. Löwis 2006-07-24 10:26:33 +00:00
parent 8cab8b03e5
commit bda0dde1c4
3 changed files with 7 additions and 0 deletions

View file

@ -151,3 +151,6 @@ if remote_name is not None:
else:
print "Remote registry calls can be tested using",
print "'test_winreg.py --remote \\\\machine_name'"
# perform minimal ConnectRegistry test which just invokes it
h = ConnectRegistry(None, HKEY_LOCAL_MACHINE)
h.Close()