Staging
v0.5.1
https://github.com/python/cpython
Revision 58bb0d84cec4e9194a63c77f6736e78d37d101d8 authored by Dmitry Tokarev on 30 June 2017, 19:02:59 UTC, committed by Serhiy Storchaka on 30 June 2017, 19:02:59 UTC
1 parent a45a99b
Raw File
Tip revision: 58bb0d84cec4e9194a63c77f6736e78d37d101d8 authored by Dmitry Tokarev on 30 June 2017, 19:02:59 UTC
Fixed 2.7 docs - links to list, backported from python3.x (#2518)
Tip revision: 58bb0d8
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=python
PATH %PATH%;..\..\tcltk\bin

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

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

echo on
%cmd%
back to top