Staging
v0.5.1
https://github.com/python/cpython
Revision 915a30fb0db8d4fc09cdf2f91db103edb5ad2cef authored by Ned Deily on 13 July 2014, 05:06:26 UTC, committed by Ned Deily on 13 July 2014, 05:06:26 UTC
broken by the fix for security issue #19435.  Patch by Zach Byrne.
1 parent 314dc12
Raw File
Tip revision: 915a30fb0db8d4fc09cdf2f91db103edb5ad2cef authored by Ned Deily on 13 July 2014, 05:06:26 UTC
Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,
Tip revision: 915a30f
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