-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Feature Suggestion: add python interpreter args to launch configuration #75
Comments
You can add custom arguments to the python interpreter when debugging as follows:
|
From @bsphere on February 2, 2017 11:36 @DonJayamanne those are args to the python program and not for the python interpreter, |
Would adding this ability also allow for keeping the console open after the file / program has been run through the "-i" option? Having the ability whether in the debugger or in the "Run Python File in Terminal" option to keep the terminal open for inspection would be really handy. |
I needed to add @echo off
"C:\Program Files\IronPython 2.7\ipy.exe" -X:PrivateBinding %* then in the {
...
"pythonPath": "${workspaceFolder}/ipy.bat",
...
} |
To help manage our issues and to better communicate what the team plans to work on we are closing issues that we don't plan to work on but would accept a pull request from a volunteer for. To be clear, closing this issue does not mean we won't consider a pull request for this enhancement as outlined in our contributing guide, just that the development team has no plans to work on it themselves. |
From @bsphere on January 29, 2017 22:6
This is very useful for debugging pyspark programs and adds the ability to add spark-submit args such as "--packages" and "--master"
Copied from original issue: DonJayamanne/pythonVSCode#682
The text was updated successfully, but these errors were encountered: