Staging
v0.5.1
https://github.com/python/cpython
Revision a04c7ebcb97fefe9b2fea0c805112afd927ac66b authored by Miss Islington (bot) on 13 October 2019, 15:53:54 UTC, committed by GitHub on 13 October 2019, 15:53:54 UTC
(cherry picked from commit e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
1 parent 6da52ac
Raw File
Tip revision: a04c7ebcb97fefe9b2fea0c805112afd927ac66b authored by Miss Islington (bot) on 13 October 2019, 15:53:54 UTC
Correct signature of __build_class__ (GH-16735)
Tip revision: a04c7eb
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