Skip to content

Instantly share code, notes, and snippets.

@wincentbalin
Created December 15, 2017 22:42
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Run IDLE from a batch file
@echo off
if "%1" == "" goto start_without_arguments
:start_with_arguments
start /B python -m idlelib.idle %1 %2 %3 %4 %5 %6 %7 %8 %9
exit /B
:start_without_arguments
python -m idlelib.idle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment