Staging
v0.5.1
https://github.com/python/cpython
Revision 3f7d0b69f2175ff74157673148b2e45b7a2498b6 authored by Miss Islington (bot) on 09 March 2018, 20:11:30 UTC, committed by GitHub on 09 March 2018, 20:11:30 UTC

Replace example result of "5 through 9" with complete list: "5, 6, 7, 8, 9".
This format is more consistent with the surrounding examples.
(cherry picked from commit 83d7062d2dc5eacfef578e072bca4747c346fdae)

Co-authored-by: Steven M. Vascellaro <S.Vascellaro@gmail.com>
1 parent 12f74d8
Raw File
Tip revision: 3f7d0b69f2175ff74157673148b2e45b7a2498b6 authored by Miss Islington (bot) on 09 March 2018, 20:11:30 UTC
controlflow: Use full example for "5 through 9" (GH-5907)
Tip revision: 3f7d0b6
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