Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

_winreg is renamed in python3 #38

Closed
The-Compiler opened this issue Apr 22, 2014 · 0 comments
Closed

_winreg is renamed in python3 #38

The-Compiler opened this issue Apr 22, 2014 · 0 comments
Labels
Milestone

Comments

@The-Compiler
Copy link

_winreg got renamed to winreg in python3. Instead of import _winreg, this should be done:

if PY3:
    import winreg as _winreg
else:
    import _winreg
@srid srid added this to the 1.4.0 milestone Apr 28, 2014
@srid srid added the bug label Apr 28, 2014
@srid srid closed this as completed in 9c93e5e Aug 17, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants