Staging
v0.5.1
https://github.com/python/cpython
Revision 17617a07d1f2d2ffb6b0f77be8926f54cd0f4ae8 authored by Amaury Forgeot d'Arc on 25 September 2008, 20:52:56 UTC, committed by Amaury Forgeot d'Arc on 25 September 2008, 20:52:56 UTC
and if the filename is a unicode string.

Reviewed by Martin von Loewis.
1 parent 22d3c92
Raw File
Tip revision: 17617a07d1f2d2ffb6b0f77be8926f54cd0f4ae8 authored by Amaury Forgeot d'Arc on 25 September 2008, 20:52:56 UTC
#3965: on Windows, open() crashes if the filename or the mode is invalid,
Tip revision: 17617a0
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=python
PATH %PATH%;..\..\tcltk\bin

if "%1"=="-d" (set exe=python_d) & shift

set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9

echo on
%cmd%
back to top