summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
Commit message (Expand)AuthorAgeFilesLines
* Add backwards compatibility.Marc-André Lemburg2001-07-261-1/+6
* Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.Martin v. Löwis2001-07-263-13/+13
* Undo revision 1.7: always mangle a #! line containing "python" to pointGreg Ward2001-07-251-4/+2
* Don't "import *" from stat at all -- just import what's needed, andGreg Ward2001-07-251-1/+1
* Patch #429442 from Jason Tishler: Corrects sys.platform andAndrew M. Kuchling2001-07-201-0/+1
* Minor changes for stylistic cleanliness and consistency.Fred Drake2001-07-181-16/+20
* Fix a mismatched parenthesis in the last patch.Guido van Rossum2001-07-161-1/+1
* [Bug #441527] Fixes for preprocessor support, contributed by TarnAndrew M. Kuchling2001-07-161-4/+5
* dummy checkin for testing, please ignoreunknown2001-07-041-1/+0
* - _filename_to_abs() didn't cater for .. components in the pathname. Fixed.Jack Jansen2001-06-191-1/+14
* Fixed -D emulation for symbols with a value, as specified with the define_mac...Just van Rossum2001-06-191-1/+1
* Fix bug #418369: typo in bdist_rpmAndrew M. Kuchling2001-05-211-1/+1
* Fixed botched indent in _init_mac() code. (It may never be executed,Guido van Rossum2001-05-171-1/+1
* Made distutils understand the MacPython Carbon runtime model. Distutils will ...Jack Jansen2001-05-172-0/+6
* Fix typo in docstringAndrew M. Kuchling2001-04-231-1/+1
* Bump version # for final releaseAndrew M. Kuchling2001-04-231-1/+1
* Pete Shinners discovered that zipfile.ZipFile() is called with modeGuido van Rossum2001-04-141-1/+1
* Since bdist_wininst.py contains the installer executable, it had to beThomas Heller2001-04-101-262/+262
* Patch #413912 from Steve Majewski: Add .m to the list of extensionsAndrew M. Kuchling2001-04-051-1/+1
* Back out the requirement to supply a version numberAndrew M. Kuchling2001-03-311-4/+0
* Change rfc822_escape() to ensure there's a consistent amount of whitespaceAndrew M. Kuchling2001-03-231-3/+4
* Use the get_contact*() accessors instead of get_maintainer*()Andrew M. Kuchling2001-03-221-2/+2
* Remove redundant importAndrew M. Kuchling2001-03-221-1/+1
* Back out conversion to string methods; the Distutils is intended to workAndrew M. Kuchling2001-03-224-13/+13
* Call the write_pkg_info methodAndrew M. Kuchling2001-03-221-2/+2
* Add 'platforms' and 'keywords' attributes to the DistributionMetadata class,Andrew M. Kuchling2001-03-221-5/+70
* Patch #407434: add rfc822_escape utility functionAndrew M. Kuchling2001-03-221-0/+10
* Fix bug #233253: the --define and --undef options didn't work, whetherAndrew M. Kuchling2001-03-171-0/+15
* Bug #409403: Signal an error if the distribution's metadata has no versionAndrew M. Kuchling2001-03-171-0/+4
* Distutils version number has been changed from 1.0.1 to 1.0.2preThomas Heller2001-03-161-1/+1
* The bdist_wininst.py command has been recreated after wininst.exeThomas Heller2001-03-161-272/+308
* Make docstrings raw, since they contain literal backslashes.Ka-Ping Yee2001-03-101-1/+1
* When not copying a file because the output is up to date, make the messageFred Drake2001-03-021-2/+2
* Leave #! lines featuring /usr/bin/env aloneAndrew M. Kuchling2001-02-281-2/+4
* Placate tabnannyAndrew M. Kuchling2001-02-281-1/+1
* Bug #229280: remove '/' characters from the OS name (for BSD/OS :) )Andrew M. Kuchling2001-02-271-1/+6
* Patch #403947: On Cygwin, use the Unix compiler class, and notAndrew M. Kuchling2001-02-271-1/+4
* Patch #404275: generate a reasonable platform string for AIXAndrew M. Kuchling2001-02-271-0/+2
* Enhancements to the bdist_wininst command:Thomas Heller2001-02-191-265/+282
* This patch makes the default compiler determination more flexibleMarc-André Lemburg2001-02-191-8/+40
* Split the rpath argument into multiple paths, turning it into a list.Andrew M. Kuchling2001-02-171-0/+3
* Linking just got simpiler on AIX and BeOS (closes SF patch #103679).Neil Schemenauer2001-02-161-25/+2
* String method conversion.Eric S. Raymond2001-02-093-10/+10
* String method conversion.Eric S. Raymond2001-02-091-3/+3
* String method conversion.Eric S. Raymond2001-02-091-1/+1
* Patch #103587: Fix typo that broke the install_data command; caught byAndrew M. Kuchling2001-02-051-1/+1
* move "from stat import *" to module levelJeremy Hylton2001-01-311-1/+1
* Remove single "." components from pathnames, and return os.curdir ifJack Jansen2001-01-281-0/+4
* Data pathnames were not converted from URL-style to local style. Fixed.Jack Jansen2001-01-281-2/+4
* Added an execution layer to be able to customize per-extensionMarc-André Lemburg2001-01-261-91/+92