Staging
v0.5.1
https://github.com/python/cpython
Revision 8d96d77f9a386c3cadfd9c9f128b99a94aaddfb4 authored by Armin Ronacher on 22 January 2011, 13:13:05 UTC, committed by Armin Ronacher on 22 January 2011, 13:13:05 UTC
This makes the implementation of PEP 3333 compliant servers on top of
BaseHTTPServer possible.
1 parent 137e0f0
Raw File
Tip revision: 8d96d77f9a386c3cadfd9c9f128b99a94aaddfb4 authored by Armin Ronacher on 22 January 2011, 13:13:05 UTC
Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server.
Tip revision: 8d96d77
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