Staging
v0.8.1
https://github.com/python/cpython
Revision 514328480a11164100bdb16f2e61c0623dce1fc8 authored by Ned Deily on 24 February 2020, 13:00:58 UTC, committed by GitHub on 24 February 2020, 13:00:58 UTC
1 parent b942ba0
Raw File
Tip revision: 514328480a11164100bdb16f2e61c0623dce1fc8 authored by Ned Deily on 24 February 2020, 13:00:58 UTC
Add note to Mac installer ReadMe about macOS 10.15 Gatekeeper changes. (GH-18648)
Tip revision: 5143284
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