Staging
v0.5.1
https://github.com/python/cpython
Revision 057dfddc8865c62507cb38c9ca444fb12856246d authored by Jesus Cea on 01 September 2008, 20:48:16 UTC, committed by Jesus Cea on 01 September 2008, 20:48:16 UTC
1 parent 3571fbf
Raw File
Tip revision: 057dfddc8865c62507cb38c9ca444fb12856246d authored by Jesus Cea on 01 September 2008, 20:48:16 UTC
In Python3.0, "test.test_support" is renamed to "test.support".
Tip revision: 057dfdd
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