Staging
v0.5.1
https://github.com/python/cpython
Revision f599f9ea3cdcf280cdf3a72272148895d8fcb3a4 authored by Miss Islington (bot) on 21 July 2020, 00:09:51 UTC, committed by GitHub on 21 July 2020, 00:09:51 UTC
(cherry picked from commit 84761c3cc4bac31d471e371c53a338686d4b0241)

Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent 22d6d88
Raw File
Tip revision: f599f9ea3cdcf280cdf3a72272148895d8fcb3a4 authored by Miss Islington (bot) on 21 July 2020, 00:09:51 UTC
bpo-40741: Update Windows build to include SQLite 3.32.3 (GH-21570)
Tip revision: f599f9e
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