Staging
v0.5.1
https://github.com/python/cpython
Revision 15ea3a6a320623328530e5d8da5b83c75766180b authored by Steve Dower on 28 January 2018, 23:34:09 UTC, committed by GitHub on 28 January 2018, 23:34:09 UTC
1 parent f11b460
Raw File
Tip revision: 15ea3a6a320623328530e5d8da5b83c75766180b authored by Steve Dower on 28 January 2018, 23:34:09 UTC
bpo-32699: Improves doc for .pth files in presense of a ._pth file (#5399)
Tip revision: 15ea3a6
idle.bat
@echo off
rem start idle
rem Usage:  idle [-d]
rem -d   Run Debug build (python_d.exe).  Else release build.

setlocal
set exe=win32\python
PATH %PATH%;..\externals\tcltk\bin

if "%1"=="-d" (set exe=%exe%_d) & shift

set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9

echo on
%cmd%
back to top