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

Support Python 2.7 and Python 3 winreg imports on Windows #1556

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

tracyde
Copy link

@tracyde tracyde commented Feb 25, 2021

Wraps the winreg import in a try statement in order to gracefully support the _winreg -> winreg name change from Python 2.7 to Python 3.

try:
    import winreg
except ImportError:
    import _winreg as winreg

@apprenticeharper
Copy link
Owner

The master branch is currently Python 3.x only.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants