Staging
v0.8.1
Revision 9fd9264155169e47c5dcb5f5947490696448af38 authored by Éric Araujo on 22 November 2010, 01:20:09 UTC, committed by Éric Araujo on 22 November 2010, 01:20:09 UTC
........
  r86662 | eric.araujo | 2010-11-22 02:19:20 +0100 (lun., 22 nov. 2010) | 2 lines

  r84925 followup: add docstring for get_makefile_filename (+PEP 257 fixes)
........
1 parent 6213cab
Raw File
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