summaryrefslogtreecommitdiffstats
path: root/PC/bdist_wininst/extract.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-221-5/+4
| | | | which will be used for the official 3.5 release.
* Fixes issue4653 - Correctly specify the buffer size to FormatMessageW andGregory P. Smith2013-03-231-1/+1
| | | | correctly check for errors on two CreateFileMapping calls.
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
|
* Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-267/+267
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ ................
* Add a warning so that it isn't forgotten to recreate the binaries ANDThomas Heller2004-07-141-0/+9
| | | | CHECK INTO CVS if these files are changed.
* Copied the sources from the distutils CVS repository.Thomas Heller2002-11-221-0/+312
Changed the MSVC project file to create the exe in the lib/distutils/command directory, bdist_wininst.py must still be changed to use it. Also changed to use the same zlib as the zlib module - this has the nice sideeffect that now the buggy 1.1.3 version is no longer used. Most of the source files now conform to PEP 7, except for the maximum line length. Windows api programming in 78 character lines =:(. README.txt is a new file, but still empty except for placeholders.