1. e259e59 Patch by Bill Noon: added 'dylib' as a library type along with by Jack Jansen · 23 years ago
  2. f17efb9 Patch #449054 to implement PEP 250. The standard install directory for by Greg Ward · 23 years ago
  3. db7aed5 [Patch #441691] preprocess() method for Borland C compiler. by Andrew M. Kuchling · 23 years ago
  4. b1d6029 [Patch #444854 from twburton] by Andrew M. Kuchling · 23 years ago
  5. 6fb8d3a [Patch #442530 from twburton] by Andrew M. Kuchling · 23 years ago
  6. 246c425 Fix for NameError caught by PyChecker. by Andrew M. Kuchling · 23 years ago
  7. f4aa684 [Bug #414032] Make the 'sdist' command work when the distribution contains by Andrew M. Kuchling · 23 years ago
  8. 13f4ea2 Remove unused variable by Andrew M. Kuchling · 23 years ago
  9. 5079fe0 Fix typo caught by PyChecker by Andrew M. Kuchling · 23 years ago
  10. 665f248 Add forgotten import by Andrew M. Kuchling · 23 years ago
  11. 981a178 Wrap a comment to fit in 80 columns. by Fred Drake · 23 years ago
  12. db988b1 Use .get_license() by Andrew M. Kuchling · 23 years ago
  13. fa7dc57 [Bug #412271, bug #449009] Use 'license' as the attribute name, by Andrew M. Kuchling · 23 years ago
  14. 6386a4c Import UnknownFileError by Andrew M. Kuchling · 23 years ago
  15. 106ffdb Import the errno module by Andrew M. Kuchling · 23 years ago
  16. affadeb Use correct variable name by Andrew M. Kuchling · 23 years ago
  17. c916cdc Miscellaneous minor cleanups. by Fred Drake · 23 years ago
  18. 8d8e7a3 Do convert_path() on script paths (now PyXML builds out of the box under MacOS.) by Just van Rossum · 23 years ago
  19. 7cf92fa Add backwards compatibility. by Marc-André Lemburg · 23 years ago
  20. 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 23 years ago
  21. 7cf7e7e Undo revision 1.7: always mangle a #! line containing "python" to point by Greg Ward · 23 years ago
  22. e628a2f Don't "import *" from stat at all -- just import what's needed, and by Greg Ward · 23 years ago
  23. 5a3e4cb Patch #429442 from Jason Tishler: Corrects sys.platform and by Andrew M. Kuchling · 23 years ago
  24. 70b014d Minor changes for stylistic cleanliness and consistency. by Fred Drake · 23 years ago
  25. 63a4740 Fix a mismatched parenthesis in the last patch. by Guido van Rossum · 23 years ago
  26. 286b107 [Bug #441527] Fixes for preprocessor support, contributed by Tarn by Andrew M. Kuchling · 23 years ago
  27. a5aa0b5 dummy checkin for testing, please ignore by unknown · 23 years ago
  28. 9020bce - _filename_to_abs() didn't cater for .. components in the pathname. Fixed. by Jack Jansen · 23 years ago
  29. 92c5bdb Fixed -D emulation for symbols with a value, as specified with the define_macros Extension argument. by Just van Rossum · 23 years ago
  30. 0152fbd Fix bug #418369: typo in bdist_rpm by Andrew M. Kuchling · 23 years ago
  31. 99f9baa Fixed botched indent in _init_mac() code. (It may never be executed, by Guido van Rossum · 23 years ago
  32. dd13a20 Made distutils understand the MacPython Carbon runtime model. Distutils will build for the runtime model you are currently using for the interpreter. by Jack Jansen · 23 years ago
  33. b3ca303 Fix typo in docstring by Andrew M. Kuchling · 23 years ago
  34. c42402f Bump version # for final release by Andrew M. Kuchling · 23 years ago
  35. b61914d Pete Shinners discovered that zipfile.ZipFile() is called with mode by Guido van Rossum · 23 years ago
  36. f6cdead Since bdist_wininst.py contains the installer executable, it had to be rebuild. by Thomas Heller · 23 years ago
  37. 7880e5e Patch #413912 from Steve Majewski: Add .m to the list of extensions by Andrew M. Kuchling · 23 years ago
  38. f89d993 Back out the requirement to supply a version number by Andrew M. Kuchling · 23 years ago
  39. 88b0884 Change rfc822_escape() to ensure there's a consistent amount of whitespace by Andrew M. Kuchling · 23 years ago
  40. ffb963c Use the get_contact*() accessors instead of get_maintainer*() by Andrew M. Kuchling · 23 years ago
  41. 6e9c0ba Remove redundant import by Andrew M. Kuchling · 23 years ago
  42. ac20f77 Back out conversion to string methods; the Distutils is intended to work by Andrew M. Kuchling · 23 years ago
  43. a7f225d Call the write_pkg_info method by Andrew M. Kuchling · 23 years ago
  44. a7210ed Add 'platforms' and 'keywords' attributes to the DistributionMetadata class, by Andrew M. Kuchling · 23 years ago
  45. df66df0 Patch #407434: add rfc822_escape utility function by Andrew M. Kuchling · 23 years ago
  46. 7620bbd Fix bug #233253: the --define and --undef options didn't work, whether by Andrew M. Kuchling · 23 years ago
  47. 898f099 Bug #409403: Signal an error if the distribution's metadata has no version by Andrew M. Kuchling · 23 years ago
  48. d179be8 Distutils version number has been changed from 1.0.1 to 1.0.2pre by Thomas Heller · 23 years ago
  49. 5c5ea1a The bdist_wininst.py command has been recreated after wininst.exe by Thomas Heller · 23 years ago
  50. 22fcae9 Make docstrings raw, since they contain literal backslashes. by Ka-Ping Yee · 23 years ago
  51. 53a7906 When not copying a file because the output is up to date, make the message by Fred Drake · 23 years ago
  52. 3a95850 Leave #! lines featuring /usr/bin/env alone by Andrew M. Kuchling · 23 years ago
  53. 6335773 Placate tabnanny by Andrew M. Kuchling · 23 years ago
  54. 83c158f Bug #229280: remove '/' characters from the OS name (for BSD/OS :) ) by Andrew M. Kuchling · 23 years ago
  55. a34dbe0 Patch #403947: On Cygwin, use the Unix compiler class, and not by Andrew M. Kuchling · 23 years ago
  56. 9767e76 Patch #404275: generate a reasonable platform string for AIX by Andrew M. Kuchling · 23 years ago
  57. e09f639 Enhancements to the bdist_wininst command: by Thomas Heller · 24 years ago
  58. 636b906 This patch makes the default compiler determination more flexible by Marc-André Lemburg · 24 years ago
  59. 27eba5e Split the rpath argument into multiple paths, turning it into a list. by Andrew M. Kuchling · 24 years ago
  60. 1a02086 Linking just got simpiler on AIX and BeOS (closes SF patch #103679). by Neil Schemenauer · 24 years ago
  61. b3acd3e String method conversion. by Eric S. Raymond · 24 years ago
  62. fc170b1 String method conversion. by Eric S. Raymond · 24 years ago
  63. 8b3cf58 String method conversion. by Eric S. Raymond · 24 years ago
  64. 1b26b6a Patch #103587: Fix typo that broke the install_data command; caught by by Andrew M. Kuchling · 24 years ago
  65. 2fa699e move "from stat import *" to module level by Jeremy Hylton · 24 years ago
  66. b4cd5c1 Remove single "." components from pathnames, and return os.curdir if by Jack Jansen · 24 years ago
  67. a221b2a Data pathnames were not converted from URL-style to local style. Fixed. by Jack Jansen · 24 years ago
  68. 49c9942 Added an execution layer to be able to customize per-extension building. by Marc-André Lemburg · 24 years ago
  69. 5e2d076 In subst_vars(), change the name of the argument from str to s to by Jeremy Hylton · 24 years ago
  70. 84d14ba There is no more Modules/Makefile, use toplevel Makefile. by Neil Schemenauer · 24 years ago
  71. 506f0b1 Part of patch #102409: special cases for Cygwin: by Andrew M. Kuchling · 24 years ago
  72. 989835c Patch #103220 from Jason Tishler: by Andrew M. Kuchling · 24 years ago
  73. c14fa30 Patch #103279: sysconfig.py always looks for versions of files in by Andrew M. Kuchling · 24 years ago
  74. b11bd03 Fix bugs with integer-valued variables when parsing Makefiles. Values by Andrew M. Kuchling · 24 years ago
  75. 9710297 Modified version of a patch from Jeremy Kloth, to make .get_outputs() by Andrew M. Kuchling · 24 years ago
  76. bd2983c Add strip_dir argument to the single call to .object_filenames(), to by Andrew M. Kuchling · 24 years ago
  77. 3f819ec Fix from Jack Jansen for the Mac and the Metrowerks compiler, posted by Andrew M. Kuchling · 24 years ago
  78. 0d36206 Delete unused import of pprint module by Andrew M. Kuchling · 24 years ago
  79. 705a3ad Check in patch #102971: if library_dirs is a string, split it using by Andrew M. Kuchling · 24 years ago
  80. 8fe2c12 Add forgotten initialization. Fixes bug #120994, "Traceback with by Andrew M. Kuchling · 24 years ago
  81. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  82. f6fc875 Jack Jansen: added 'get_command_list()' method, and Mac-specific code to by Greg Ward · 24 years ago
  83. 0eb75b4 Bump version to 1.0.1. by Greg Ward · 24 years ago
  84. 047c372 Removed debugging code at bottom. by Greg Ward · 24 years ago
  85. fa9ff76 Untabified. by Greg Ward · 24 years ago
  86. 4cd6f2a Bastian Kleineidam: make 'check_lib()' more like AC_CHECK_LIB by adding by Greg Ward · 24 years ago
  87. 0b4dafc Lyle Johnson: use 'normcase()' in addition to 'normpath()' when testing if by Greg Ward · 24 years ago
  88. 2e38a50 Bastian Kleineidam: fix up any supplied command-line options. by Greg Ward · 24 years ago
  89. 20d529b Recreated after installer source code changes. by Thomas Heller · 24 years ago
  90. da175f4 Bump version to 1.0. by Greg Ward · 24 years ago
  91. 25a309c Remove some debugging prints. by Greg Ward · 24 years ago
  92. a9d3783 Fixed so --no-compile is a negative alias for --compile. by Greg Ward · 24 years ago
  93. 9216cfe Added a long-winded comment (and commented-out comment to go with out) by Greg Ward · 24 years ago
  94. 0295181 Typo fix. by Greg Ward · 24 years ago
  95. 73a6c94 Added the ability to do byte-compilation at build time, currently off by Greg Ward · 24 years ago
  96. 8161022 Added --compile, --optimize options so users have an easy way to by Greg Ward · 24 years ago
  97. cb9c9ae Finished the overhaul of byte-compilation options: there's now a 6-way by Greg Ward · 24 years ago
  98. 04cc88d Remove the temporary byte-compilation script when we're done with it. by Greg Ward · 24 years ago
  99. c1acc69 From 'run()', only call 'bytecompile()' if we actually have by Greg Ward · 24 years ago
  100. f217e21 Tweaked 'byte_compile()' so it silently skips non-Python files, rather than by Greg Ward · 24 years ago