Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c25efbd commit ce93c98Copy full SHA for ce93c98
setupext.py
@@ -42,13 +42,12 @@ def check_output(*popenargs, **kwargs):
42
return output
43
44
45
-try:
+if sys.platform != 'win32':
46
if sys.version_info[0] < 3:
47
from commands import getstatusoutput
48
else:
49
from subprocess import getstatusoutput
50
-except ImportError:
51
- pass
+
52
53
if PY3:
54
import configparser
@@ -147,7 +146,6 @@ def get_base_dirs():
147
146
return options['basedirlist']
148
149
basedir_map = {
150
-
151
'win32': ['win32_static', ],
152
'darwin': ['/usr/local/', '/usr', '/usr/X11',
153
'/opt/X11', '/opt/local'],
0 commit comments