Staging
v0.5.1
https://github.com/python/cpython
Revision ccae479e2de19a042a75a1c1e1cdca7453de86f6 authored by Raymond Hettinger on 10 November 2014, 01:10:17 UTC, committed by Raymond Hettinger on 10 November 2014, 01:10:17 UTC
1 parent fb136d1
Raw File
Tip revision: ccae479e2de19a042a75a1c1e1cdca7453de86f6 authored by Raymond Hettinger on 10 November 2014, 01:10:17 UTC
Issue 22830: Clarify docs for functools.cmp_to_key().
Tip revision: ccae479
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