Staging
v0.5.1
https://github.com/python/cpython
Revision fd340bf9e308130736c76257ff9a697edbeb082d authored by Miss Islington (bot) on 05 March 2018, 16:49:15 UTC, committed by GitHub on 05 March 2018, 16:49:15 UTC

Like Python, IDLE optionally runs one startup file in the Shell window
before presenting the first interactive input prompt.  For IDLE,
option -s runs a file named in environmental variable IDLESTARTUP or
PYTHONSTARTUP; -r file runs file.  Python sets __file__ to the startup
file name before running the file and unsets it before the first
prompt.  IDLE now does the same when run normally, without the -n
option.
(cherry picked from commit 22c82be5df70c3d51e3f89b54fe1d4fb84728c1e)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent f92478d
Raw File
Tip revision: fd340bf9e308130736c76257ff9a697edbeb082d authored by Miss Islington (bot) on 05 March 2018, 16:49:15 UTC
bpo-32984: IDLE - set __file__ for startup files (GH-5981)
Tip revision: fd340bf
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