Staging
v0.5.1
https://github.com/python/cpython
Revision cf61a81f1d600064be6dd43896afcf5f976de9b0 authored by Miss Islington (bot) on 13 March 2018, 10:12:16 UTC, committed by GitHub on 13 March 2018, 10:12:16 UTC
(cherry picked from commit e32bbaf376a09c149fa7c7f2919d7c9ce4e2a055)

Co-authored-by: xdegaye <xdegaye@gmail.com>
1 parent 6a526f6
Raw File
Tip revision: cf61a81f1d600064be6dd43896afcf5f976de9b0 authored by Miss Islington (bot) on 13 March 2018, 10:12:16 UTC
[3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-5928)
Tip revision: cf61a81
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