Staging
v0.5.1
https://github.com/python/cpython
Revision 571088de5d07680977cbd05d5a1bca8fc031fb55 authored by R. David Murray on 24 February 2010, 01:51:59 UTC, committed by R. David Murray on 24 February 2010, 01:51:59 UTC
................
  r78400 | r.david.murray | 2010-02-23 20:46:21 -0500 (Tue, 23 Feb 2010) | 12 lines

  Merged revisions 78351 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r78351 | r.david.murray | 2010-02-22 19:24:49 -0500 (Mon, 22 Feb 2010) | 5 lines

    Issue 6292: for the moment at least, the test suite passes if run
    with -OO.  Tests requiring docstrings are skipped.  Patch by
    Brian Curtin, thanks to Matias Torchinsky for helping review and
    improve the patch.
  ........
................
1 parent f31f6c9
Raw File
Tip revision: 571088de5d07680977cbd05d5a1bca8fc031fb55 authored by R. David Murray on 24 February 2010, 01:51:59 UTC
Blocked revisions 78400 via svnmerge
Tip revision: 571088d
buildmsi.bat
@rem Used by the buildbot "buildmsi" step.

cmd /c Tools\buildbot\external.bat
@rem build release versions of things
call "%VS90COMNTOOLS%vsvars32.bat"

@rem build Python
vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"

@rem build the documentation
bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'
"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp

@rem build the MSI file
cd PC
nmake /f icons.mak
cd ..\Tools\msi
del *.msi
nmake /f msisupport.mak
%HOST_PYTHON% msi.py

back to top