summaryrefslogtreecommitdiff
path: root/Lib/distutils/msvccompiler.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ...Steve Dower2014-11-221-0/+3
* Fix closes Issue11439 Remove the SVN keywords from the code as it is no longe...Senthil Kumaran2011-07-281-2/+0
* #2879: rename _winreg to winreg.Georg Brandl2008-05-251-7/+7
* Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-...Christian Heimes2008-04-091-1/+1
* Merged revisions 59275-59303 via svnmerge fromChristian Heimes2007-12-031-0/+8
* The _winreg module returns bytes which must be decoded to unicode, not encoded.Christian Heimes2007-11-171-3/+3
* Fix a typo in the distutils cleanup.Collin Winter2007-08-301-1/+1
* General cleanup, raise normalization in Lib/distutils.Collin Winter2007-08-301-110/+92
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+15
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-11/+11
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-6/+6
* Get rid of a bunch more has_key() uses. We *really* need a tool for this.Neal Norwitz2006-08-201-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+5
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+1
* Whitespace normalization.Tim Peters2006-02-201-3/+3
* Detect Win64 builds.Martin v. Löwis2006-02-201-10/+39
* Let the SDK setup override distutils logic.Martin v. Löwis2006-02-201-15/+25
* Patch #827386: Support absolute source paths in msvccompiler.py.Martin v. Löwis2005-08-071-0/+2
* Port bugfix from 2.4 maint.Tim Peters2005-03-121-0/+1
* Remove some more tab usage to prevent an error when run as ``python -tt``.Brett Cannon2005-03-051-2/+2
* Remove a tab so that whitespace usage is consistent.Brett Cannon2005-03-051-1/+1
* Patch #1075887: Don't require MSVC in distutils if there is nothingMartin v. Löwis2005-03-041-0/+6
* Whitespace normalization.Tim Peters2004-11-281-6/+6
* SF patch #1071739 (by Christos Georgiou)Fredrik Lundh2004-11-241-4/+9
* Update compatibility comments to 2.1, corresponding to PEP 291 1.13.Martin v. Löwis2004-11-101-1/+1
* Avoid a linker warning: MSVC 7 doesn't support /pdb:None, the debugThomas Heller2004-11-101-3/+8
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-4/+3
* Compile the files in the same order they are passed to the compiler.Thomas Heller2003-12-051-1/+5
* See SF #848614: distutils' msvccompiler now tries to detect that MSVC6Thomas Heller2003-11-281-0/+10
* Patch from John Anderson to enable VC 7.1 support.Jeremy Hylton2003-07-171-12/+27
* Restore Python 1.5.2 compatibility.Marc-André Lemburg2003-05-141-1/+1
* Replace line somehow deleted before last checkin.Jeremy Hylton2003-05-091-0/+1
* Variant of SF patch 614770: MSVC 7 supportJeremy Hylton2003-05-091-143/+189
* Pass the preprocessor options also to the resource compilerThomas Heller2003-01-311-1/+1
* Add comment to Distutil files about requiring 1.5.2 compatibility, asAndrew M. Kuchling2002-11-191-1/+2
* Remove 'created by' lines; people can use CVS for this, and the information i...Andrew M. Kuchling2002-11-141-1/+1
* This patch fixes the following bugs:Gustavo Niemeyer2002-11-051-7/+3
* Define NDEBUG for releae builds, just like Python.Jeremy Hylton2002-06-181-1/+2
* Refactor compile() method implementations.Jeremy Hylton2002-06-131-86/+69
* Make setup.py less chatty by default.Jeremy Hylton2002-06-041-3/+4
* Pass the full pathname to MSVC when compiling a debug version. ThisThomas Heller2002-04-251-0/+6
* Make it 1.5.2 compatible again.Thomas Heller2002-02-081-4/+5
* Encode MSVC paths as mbcs. Fixes #509117. 2.2.1 candidate.Martin v. Löwis2002-01-291-0/+4
* Whitespace normalization.Fred Drake2001-12-061-9/+9
* Big patch from Rene Liebscher to simplify the CCompiler API andGreg Ward2000-09-271-102/+33
* *Very* belated application of Thomas Heller's patch to handleGreg Ward2000-09-191-3/+86
* Add /GX to 'compile_options'. This is definitely needed for C++ source;Greg Ward2000-08-311-2/+3
* Add ".cxx" to the list of known C++ extensions.Greg Ward2000-08-301-1/+1
* Added 'debug' flag to 'find_library_file()', and changed code to handle it.Greg Ward2000-08-041-6/+11
* Ditched some debugging prints.Greg Ward2000-08-021-3/+0