summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
Commit message (Expand)AuthorAgeFilesLines
* Well, Fred never did explain why the code to determine whether theMichael W. Hudson2002-07-121-7/+3
* The standard definition file is now called mwerks_shcarbon_plugin.h.Jack Jansen2002-06-271-1/+1
* Whitespace normalization (remove tabs)Neal Norwitz2002-06-261-4/+4
* Fixed various MacPython-specific issues found by attempting to use the standa...Jack Jansen2002-06-262-4/+37
* This module broke on the Mac (where it can't work, but distutils seems to imp...Jack Jansen2002-06-261-1/+2
* Define NDEBUG for releae builds, just like Python.Jeremy Hylton2002-06-181-1/+2
* Add implementation of _compile() and use default compile() method.Jeremy Hylton2002-06-183-84/+33
* Add a default implementation of compile() to the base class.Jeremy Hylton2002-06-181-1/+20
* Only import msvccompiler on win32 platforms.Jeremy Hylton2002-06-181-11/+11
* Extend dependency tracking so that .o files are rebuilt.Jeremy Hylton2002-06-131-4/+2
* Refactor compile() method implementations.Jeremy Hylton2002-06-135-272/+178
* Add depends=None to the arglist for compile().Jeremy Hylton2002-06-131-1/+2
* Extend compiler() method with optional depends argument.Jeremy Hylton2002-06-131-74/+168
* More style changes and little cleanups.Jeremy Hylton2002-06-131-63/+33
* Some more style improvementsJeremy Hylton2002-06-131-25/+4
* Python style conformance: Delete spaces between name of function and arglist.Jeremy Hylton2002-06-131-41/+41
* Add a new definition to Extension objects: depends.Jeremy Hylton2002-06-122-1/+6
* Patch #488073: AtheOS port.Martin v. Löwis2002-06-111-2/+18
* Change warning to debug level; it's a very minor issue.Jeremy Hylton2002-06-061-2/+2
* Move warning about directory not on sys.path to debug level.Jeremy Hylton2002-06-041-8/+10
* Test changes before checking them in.Jeremy Hylton2002-06-041-1/+1
* Track extra arg to option_table to all uses of itJeremy Hylton2002-06-041-2/+2
* Replace bogus bare variables with attribute access.Jeremy Hylton2002-06-041-3/+4
* Define DEBUG as early as possible to avoid import problems.Jeremy Hylton2002-06-041-5/+5
* Add missing import of log.Jeremy Hylton2002-06-041-0/+1
* Use module-level import of DEBUG instead of many function-level imports.Jeremy Hylton2002-06-041-4/+1
* Remove unused importsJeremy Hylton2002-06-042-2/+0
* Make None return explicitJeremy Hylton2002-06-041-1/+1
* import base64 at the top to avoid two different imports at other timesJeremy Hylton2002-06-041-2/+2
* ensure_filename() only takes one argument.Jeremy Hylton2002-06-041-6/+4
* Reindent lines to improve readabilityJeremy Hylton2002-06-041-3/+3
* Remove (commented out) options that have moved into the distribution.Jeremy Hylton2002-06-041-13/+0
* get_script() implicitly returned None and also had explicit returns.Jeremy Hylton2002-06-041-26/+25
* global _option_order is not usedJeremy Hylton2002-06-041-6/+0
* Fix bug in recent change to logging code.Jeremy Hylton2002-06-041-1/+1
* Fix unused local variables caught by pychecker.Jeremy Hylton2002-06-046-22/+8
* Set repeat metadata for an option based on repeat local var notJeremy Hylton2002-06-041-1/+1
* Remove unused imports caught by pycheckerJeremy Hylton2002-06-044-5/+2
* Make setup.py less chatty by default.Jeremy Hylton2002-06-0432-313/+260
* A simple log mechanism styled after the proposed std library moduleJeremy Hylton2002-06-041-0/+56
* The comment said:Jeremy Hylton2002-06-041-20/+0
* When using a Python that has not been installed to build 3rd-partyFred Drake2002-06-041-14/+22
* Remove unneeded importAndrew M. Kuchling2002-05-301-1/+0
* Prevent convert_path from crashing if the path is an empty string. Bugfix ca...Andrew M. Kuchling2002-05-061-2/+2
* Pass the full pathname to MSVC when compiling a debug version. ThisThomas Heller2002-04-251-0/+6
* Append the PC specific include 'PC' and library 'PCBuild' directoriesThomas Heller2002-04-251-1/+8
* Fix trivial typo.Thomas Heller2002-04-251-1/+1
* Whitespace normalization. Unka Timmy would be proud.Barry Warsaw2002-04-232-57/+57
* Patch #531901 by Mark W. Alexander: adds a new distutils packagerMarc-André Lemburg2002-04-175-4/+976
* Remove unconditional debugging prints.Thomas Heller2002-04-091-3/+0