Skip to content

Commit ca49c94

Browse files
authored
fix winreg usage for python2 on windows (#1316)
1 parent 1c74a51 commit ca49c94

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/changelog/1315.bugfix.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix import and usage of ``winreg`` for python2.7 on windows - by :user:`asottile`.

src/tox/interpreters/windows/pep514.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import re
66

77
import six
8-
import winreg
8+
from six.moves import winreg
99

1010
from tox import reporter
1111
from tox.interpreters.py_spec import PythonSpec
@@ -52,7 +52,7 @@ def discover_pythons():
5252

5353
def process_set(hive, hive_name, key, flags, default_arch):
5454
try:
55-
with winreg.OpenKeyEx(hive, key, access=winreg.KEY_READ | flags) as root_key:
55+
with winreg.OpenKeyEx(hive, key, 0, winreg.KEY_READ | flags) as root_key:
5656
for company in enum_keys(root_key):
5757
if company == "PyLauncher": # reserved
5858
continue

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ include_trailing_comma = True
139139
force_grid_wrap = 0
140140
line_length = 99
141141
known_first_party = tox,tests
142-
known_third_party = apiclient,docutils,filelock,flaky,freezegun,git,httplib2,oauth2client,packaging,pathlib2,pkg_resources,pluggy,py,pytest,setuptools,six,sphinx,toml,winreg
142+
known_third_party = apiclient,docutils,filelock,flaky,freezegun,git,httplib2,oauth2client,packaging,pathlib2,pkg_resources,pluggy,py,pytest,setuptools,six,sphinx,toml
143143
144144
[testenv:release]
145145
description = do a release, required posarg of the version number

0 commit comments

Comments
 (0)