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 105a79e commit 334bbb9Copy full SHA for 334bbb9
make.py
@@ -395,7 +395,8 @@ def _extract_python(self):
395
open(pyvenv_file, 'w').write('applocal=True\n')
396
else:
397
# new Python 3.6 trick (https://docs.python.org/3.6/using/windows.html#finding-modules)
398
- pypath_file = osp.join(self.python_dir, 'python._pth')
+ # (on hold since 2017-02-16, http://bugs.python.org/issue29578)
399
+ pypath_file = osp.join(self.python_dir, 'python_onHold._pth')
400
open(pypath_file, 'w').write('python36.zip\nDLLs\nLib\n.\nimport site\n')
401
402
utils.extract_msi(self.python_fname, targetdir=self.python_dir)
0 commit comments