Staging
v0.5.1
https://github.com/python/cpython
Revision 042025f6b8616f1d505cec1122bebc01e7083e69 authored by Amaury Forgeot d'Arc on 02 September 2008, 21:50:47 UTC, committed by Amaury Forgeot d'Arc on 02 September 2008, 21:50:47 UTC
I don't have a working VS7.1, but VS2005 can automatically convert
the project and build a working python interpreter.
1 parent 2e9b6cb
Raw File
Tip revision: 042025f6b8616f1d505cec1122bebc01e7083e69 authored by Amaury Forgeot d'Arc on 02 September 2008, 21:50:47 UTC
Attempt to correct the build files for the Microsoft VS7.1 compiler.
Tip revision: 042025f
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