Staging
v0.5.1
https://github.com/python/cpython
Revision 3daf0017de56ec1a5d61f5ff833d63dc3ca35278 authored by Miss Islington (bot) on 10 July 2020, 15:50:45 UTC, committed by GitHub on 10 July 2020, 15:50:45 UTC
(cherry picked from commit 6fc732a2116e2c42b0431bb7e2a21719351af755)

Co-authored-by: marload <rladhkstn8@gmail.com>
1 parent 51b36ed
Raw File
Tip revision: 3daf0017de56ec1a5d61f5ff833d63dc3ca35278 authored by Miss Islington (bot) on 10 July 2020, 15:50:45 UTC
Fix typo in docs: 'created by th' -> 'created by the' (GH-21384)
Tip revision: 3daf001
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