Staging
v0.5.1
https://github.com/python/cpython
Revision 641279e6e51b5d2e10d3fbffe6330e47c94c4bb2 authored by Miss Islington (bot) on 27 August 2020, 01:17:05 UTC, committed by GitHub on 27 August 2020, 01:17:05 UTC
(cherry picked from commit 022bc7572f061e1d1132a4db9d085b29707701e7)

Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
1 parent 7475aa2
Raw File
Tip revision: 641279e6e51b5d2e10d3fbffe6330e47c94c4bb2 authored by Miss Islington (bot) on 27 August 2020, 01:17:05 UTC
bpo-41609: Fix output of pdb's whatis command for instance methods (GH-21935) (#21976)
Tip revision: 641279e
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