Hi,
My WinPython version is 3.5.2.2Qt5.
The powershell launch icon is a good thing but I see one strange line in this file (discovered when I wanted to configure my profile):
if (-not $env:WINPYDIR -eq "$dp0\..\python-3.4.4.amd64")...
shouldn't this line be replaced by this one (adding brackets):
if (-not ($env:WINPYDIR -eq "$dp0\..\python-3.4.4.amd64"))
?
-not $env:WINPYDIR -eq "$dp0\..\python-3.4.4.amd64" is the same as (-not $env:WINPYDIR) -eq "$dp0\..\python-3.4.4.amd64" and a non-empty string is True when cast into a boolean.
Hi,
My WinPython version is 3.5.2.2Qt5.
The powershell launch icon is a good thing but I see one strange line in this file (discovered when I wanted to configure my profile):
shouldn't this line be replaced by this one (adding brackets):
?
-not $env:WINPYDIR -eq "$dp0\..\python-3.4.4.amd64"is the same as(-not $env:WINPYDIR) -eq "$dp0\..\python-3.4.4.amd64"and a non-empty string is True when cast into a boolean.