Staging
v0.5.1
https://github.com/python/cpython
Revision f13a06b1a8f49144ed3e238857cf4c322f3ec54f authored by Miss Islington (bot) on 08 March 2019, 01:44:31 UTC, committed by GitHub on 08 March 2019, 01:44:31 UTC
(cherry picked from commit f2320b37d9c85d8ddfc0c6afa81b77cd5f6e5ef2)

Co-authored-by: Benedikt Werner <1benediktwerner@gmail.com>
1 parent 6ba95c3
Raw File
Tip revision: f13a06b1a8f49144ed3e238857cf4c322f3ec54f authored by Miss Islington (bot) on 08 March 2019, 01:44:31 UTC
Fix typo (double 'the') in CODEOWNERS (GH-12227)
Tip revision: f13a06b
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