Steve Dower <steve.do...@python.org> added the comment:

This seems to be a change in Windows at some point, as it still works on one of 
my other PCs. I've pinged some colleagues to find out what might have happened, 
but it definitely looks like the lack of Read+Execute permission is working 
correctly now :(

One potential fix is to return the path under 
C:\Users\<username>\AppData\Local\Microsoft\WindowsApp as sys.executable (and 
sys.exec_prefix?), but it only contains the executable launchers and none of 
the actual Python install. Making this work for venv might require new values 
in pyvenv.cfg (however, it also seems that the current sys.executable changes 
with each update, so if we can change it universally to point at the user's 
WindowsApp directory then that will stop).

The good news is that if you're trying to launch it from within Python it still 
works, so multiprocessing is not affected. It's only things that write 
sys.executable out and try to use it later, like venv.

Adding Ned FYI, as if I can come up with a fix for this before we ship 3.7.4 
I'd like to include it. No idea yet how possible that will be or what our fix 
will be though.

----------
nosy: +ned.deily
priority: normal -> critical

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue37369>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to