Staging
v0.5.1
https://github.com/python/cpython
Revision 316f86911a369a1c8f6f3a94620f1bdecefe59b2 authored by Miss Islington (bot) on 21 May 2018, 12:30:06 UTC, committed by GitHub on 21 May 2018, 12:30:06 UTC
(cherry picked from commit b7555babe95ee0db2f1224ec53cfe68a005448a1)

Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
1 parent 4d39ade
Raw File
Tip revision: 316f86911a369a1c8f6f3a94620f1bdecefe59b2 authored by Miss Islington (bot) on 21 May 2018, 12:30:06 UTC
Use IPv4 only to avoid IP address collision (GH-7030)
Tip revision: 316f869
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=win32\python
PATH %PATH%;..\externals\tcltk\bin

if "%1"=="-d" (set exe=%exe%_d) & shift

set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9

echo on
%cmd%
back to top