Staging
v0.5.1
https://github.com/python/cpython
Revision 45e5750a013291c5729e0ebad2b9e340fdffbd36 authored by Miss Islington (bot) on 09 January 2020, 03:07:38 UTC, committed by GitHub on 09 January 2020, 03:07:38 UTC
(cherry picked from commit 5cae042f686cc174e00093944dc118914c874b7c)

Co-authored-by: Alex Henrie <alexhenrie24@gmail.com>
1 parent b24e4fa
Raw File
Tip revision: 45e5750a013291c5729e0ebad2b9e340fdffbd36 authored by Miss Islington (bot) on 09 January 2020, 03:07:38 UTC
closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind. (GH-17908)
Tip revision: 45e5750
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