Staging
v0.8.1
https://github.com/python/cpython
Revision f62ae822d4badf3511cf7e6e9ecace6a7df2cddc authored by Brian Curtin on 31 October 2010, 00:00:30 UTC, committed by Brian Curtin on 31 October 2010, 00:00:30 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86000 | brian.curtin | 2010-10-30 18:56:45 -0500 (Sat, 30 Oct 2010) | 2 lines

  Fix ResourceWarning about unclosed file
........
1 parent fcbf5d0
Raw File
Tip revision: f62ae822d4badf3511cf7e6e9ecace6a7df2cddc authored by Brian Curtin on 31 October 2010, 00:00:30 UTC
Merged revisions 86000 via svnmerge from
Tip revision: f62ae82
build.bat
@echo off
rem A batch program to build or rebuild a particular configuration.
rem just for convenience.

setlocal
set platf=Win32
set conf=Release
set build=

:CheckOpts
if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts
if "%1"=="-d" (set conf=Debug) & shift & goto CheckOpts

set cmd=vcbuild /useenv pcbuild.sln %build% "%conf%|%platf%"
echo %cmd%
%cmd%
back to top