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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exiting python after being called from "...\scripts" directory changes the CWD.
<install_dir>\WinPython Command Prompt.exe
python
exit()
The CWD stays at <install_dir>\scripts.
<install_dir>\scripts
The current directory changes to <install_dir>\notebooks.
<install_dir>\notebooks
The text was updated successfully, but these errors were encountered:
in scripts, change current python.bat from
@echo off call "%~dp0env_for_icons.bat" cd/D "%WINPYWORKDIR%" rem backward compatibility for python command-line users "%WINPYDIR%\python.exe" %*
to
@echo off call "%~dp0env_for_icons.bat" rem backward compatibility for python command-line users "%WINPYDIR%\python.exe" %*
will be in next beta
Sorry, something went wrong.
No branches or pull requests
Summary
Exiting python after being called from "...\scripts" directory changes the CWD.
Steps to Reproduce:
<install_dir>\WinPython Command Prompt.exe
python
to start the interpreterexit()
Expected Behavior:
The CWD stays at
<install_dir>\scripts
.Actual Behavior:
The current directory changes to
<install_dir>\notebooks
.Example:
Versions:
Related Issues:
The text was updated successfully, but these errors were encountered: