1. d38e6f7 Added optional 'prefix' arguments to 'get_python_inc()' and 'get_python_lib()'. by Greg Ward · 24 years ago
  2. cf6bea3 Better variable names here and there. by Greg Ward · 24 years ago
  3. c41d6b3 Added '--force' option -- very clear what it means for building (ignore by Greg Ward · 24 years ago
  4. 68a0757 Removed global '--force' option -- just too vague a concept to be applicable by Greg Ward · 24 years ago
  5. 582a870 Added __version__ to store the Distutils version number. by Greg Ward · 24 years ago
  6. 60908f1 Ditched the unused 'list_only' option. by Greg Ward · 24 years ago
  7. b2e2c29 Catch DistutilsFileError in addition to DistutilsExecError in 'setup()'. by Greg Ward · 24 years ago
  8. b361233 Added (currently) pointless and trivial main body (for future tests). by Greg Ward · 24 years ago
  9. d759f5f This little note is to clarify things for people who go poking around the by Greg Ward · 24 years ago
  10. 5fa3886 Fred Gansevles <gansevle@cs.utwente.nl>: by Fred Drake · 24 years ago
  11. 7d508fe Add missing import of 'usage' string. by Greg Ward · 24 years ago
  12. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  13. 605843f Mark Hammond: This patch fixes the mmap module on Windows 9x. by Fred Drake · 24 years ago
  14. aaa8bb4 Work the Tcl version number in the path we search for. by Guido van Rossum · 24 years ago
  15. 13c8c02 Skip Montanaro submits a simple patch that makes encode() and decode() by Guido van Rossum · 24 years ago
  16. 965fdae Patch by Fred Gansevles. by Guido van Rossum · 24 years ago
  17. 1571a1e Since Thomas Wouters kept complaining that he wants access to the the by Guido van Rossum · 24 years ago
  18. aebf706 Reorganization: ripped util.py to shreds, creating in the process: by Greg Ward · 24 years ago
  19. fe6462c Reorganization: moved the Distribution class from core.py to dist.py, and by Greg Ward · 24 years ago
  20. a22b576 UserString class from Peter Funk <pf@artcom-gmbh.de>. by Fred Drake · 24 years ago
  21. e3ba931 This patch looks large, but it just deletes the ^M characters and by Andrew M. Kuchling · 24 years ago
  22. e188d52 Untabified file to fix problems reported by tabnanny by Andrew M. Kuchling · 24 years ago
  23. d9b0f26 Mark Hammond: Uncomment call to delete test data when done. by Fred Drake · 24 years ago
  24. 431ae48 Add a README file so that cvs update -P doesn't obliterate this by Guido van Rossum · 24 years ago
  25. 19ce166 Fixed my simplification to Thomas' patch: winreg and win32api export the same by Greg Ward · 24 years ago
  26. 32abe6f Zip file handling module, by Jim Ahlstrom. by Guido van Rossum · 24 years ago
  27. b95de4f Marc-Andre Lemburg: Error reporting in the codec registry and lookup by Guido van Rossum · 24 years ago
  28. 68895ed Marc-Andre Lemburg: use all lowercase names. by Guido van Rossum · 24 years ago
  29. 1027e3f Simplified Thomas Heller's registry patch: just assign all those by Greg Ward · 24 years ago
  30. 7642f5c Patch from Thomas Heller: use the new winreg module if available. by Greg Ward · 24 years ago
  31. d553e99 Added test case output for pyexpat module by Andrew M. Kuchling · 24 years ago
  32. b17664d Added test case for pyexpat module that tries to exercise all the handlers by Andrew M. Kuchling · 24 years ago
  33. 7627c0d Added Fredrik Lundh's sre module and its supporting cast. by Guido van Rossum · 24 years ago
  34. b4c850c Added code to blow away the pseudo-installation tree and a 'keep_tree' by Greg Ward · 24 years ago
  35. e5796fe Oops, got a little too enthusiastic deleting code in that last revision: by Greg Ward · 24 years ago
  36. 1889de8 Fixed 'make_archive()' to explicitly turn of compression when format is "tar". by Greg Ward · 24 years ago
  37. 02296ce Rename 'formats' option to 'format', and remove the ability to generate by Greg Ward · 24 years ago
  38. 6b21376 Import from 'types' module. Added 'ztar', 'tar' to 'format_command' dictionary. by Greg Ward · 24 years ago
  39. 6ce00b4 Tweaked 'get_platform()' to include the first character of the OS release: by Greg Ward · 24 years ago
  40. 7d51034 Removed some old test code: don't set 'plat' when calling 'new_compiler()'. by Greg Ward · 24 years ago
  41. 95c0b26 Don't perpetrate the "_d" hack for naming debugging extensions -- that's by Greg Ward · 24 years ago
  42. 8422964 Patch (mostly) from Thomas Heller for building on Windows: by Greg Ward · 24 years ago
  43. 6e8ee5d Don't put Python's library directory into the library search path -- that's by Greg Ward · 24 years ago
  44. 6148c2c Added 'bdist' and 'bdist_dumb'. by Greg Ward · 24 years ago
  45. 42405a5 A version of FixTk.py that works with the way the installer now installs Tcl/Tk. by Guido van Rossum · 24 years ago
  46. 1b64a7e Added 'get_name()' and 'get_full_name()' methods to Distribution. by Greg Ward · 24 years ago
  47. 32ce329 Added 'create_tree()'. by Greg Ward · 24 years ago
  48. 318a9d7 Added DistutilsInternalError. by Greg Ward · 24 years ago
  49. e1664bd The 'bdist_dumb' command, the first worker bee for use by 'bdist'. This is by Greg Ward · 24 years ago
  50. 0f77f95 The 'bdist' command, for creating "built" (binary) distributions. by Greg Ward · 24 years ago
  51. 1aab6e9 Added 'get_inputs()'. by Greg Ward · 24 years ago
  52. ba38d12 Fixed 'get_outputs()' so it actually works. by Greg Ward · 24 years ago
  53. 578c10d Changed to use the new 'has_pure_modules()' and 'has_ext_modules()' methods by Greg Ward · 24 years ago
  54. 706dbd0 Mark Hammond: Ooops - even though Win32 handles the same args, there by Guido van Rossum · 24 years ago
  55. 767e775 Improved test, by Mark Hammond, for Win32. by Guido van Rossum · 24 years ago
  56. 6a973c7 robustify UserList constructor -- will now accept any sequence by Jeremy Hylton · 24 years ago
  57. 074c3e6 Two fixes for extended call syntax: by Jeremy Hylton · 24 years ago
  58. 2ab9082 Show Tcl/Tk version number in _test() and show Unicode test if possible. by Guido van Rossum · 24 years ago
  59. a35be2f Output for simple test case for mmap on Unix; someone needs to write a by Andrew M. Kuchling · 24 years ago
  60. e81b9cf Added simple test case for mmap on Unix; someone needs to write a by Andrew M. Kuchling · 24 years ago
  61. 71d5583 Oops: 'build_extensions()' no longer takes an 'extensions' list. by Greg Ward · 24 years ago
  62. d30dedc Michael Hudson: With the (cool!) new call syntax, the longest opcode by Guido van Rossum · 24 years ago
  63. bf45322 Lawrence Kesteloot noted: Lib/user.py has a comment that says that the by Guido van Rossum · 24 years ago
  64. 1d16a9f Put the Python "system" include dir last, rather than first. by Greg Ward · 24 years ago
  65. 41b4dd6 Call 'find_exe()', not '_find_exe()'. by Greg Ward · 24 years ago
  66. ed8a0e0 Patch inspired by Bastian Kleineidam <calvin@cs.uni-sb.de>: by Greg Ward · 24 years ago
  67. 044b7c1 Changed 'copy_tree()' so it returns the list of all files that were copied or by Greg Ward · 24 years ago
  68. 739d066 Documented Bastian's patch. Made handling OSError in 'mkpath()' more standard. by Greg Ward · 24 years ago
  69. da4d1ae Patch from Bastian Kleineidam <calvin@cs.uni-sb.de>: by Greg Ward · 24 years ago
  70. 7c1a6d4 Added 'make_tarball()' and 'make_zipfile()' functions in preparation by Greg Ward · 24 years ago
  71. 03d1ae1 Moved the guts of 'make_tarball()' and 'make_zipfile()' to distutils.util by Greg Ward · 24 years ago
  72. f00c34d Added the "distribution query" methods: 'has_pure_modules()', by Greg Ward · 24 years ago
  73. ab9d08c Added 'build_clib'; replaced 'install_py' and 'install_ext' with 'install_lib'. by Greg Ward · 24 years ago
  74. e5dfba5 Be sure to run both 'build_py' and 'build_ext', now that this command by Greg Ward · 24 years ago
  75. ee94c57 Changed so the sub-commands we rely on to do the real work is specified by Greg Ward · 24 years ago
  76. ae45b16 Use the new 'has_pure_modules()', 'has_ext_modules()', 'has_c_libraries()' by Greg Ward · 24 years ago
  77. 4d16e0a Added 'get_outputs()' in prepartion for the 'bdist' command. by Greg Ward · 24 years ago
  78. 8b2e95e Deleted some crufty comments and code. by Greg Ward · 24 years ago
  79. 003663d fix previous checkin by Jeremy Hylton · 24 years ago
  80. aed0d8d add test cases for Greg Ewing's extended call syntax patch by Jeremy Hylton · 24 years ago
  81. 7690151 slightly modified version of Greg Ewing's extended call syntax patch by Jeremy Hylton · 24 years ago
  82. 93a7c0f Fredrik Lundh: by Guido van Rossum · 24 years ago
  83. 1916b35 Fredrik Lundh: by Guido van Rossum · 24 years ago
  84. de59855 Mark Hammond: test suite for new winreg module. by Guido van Rossum · 24 years ago
  85. 24bdb04 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  86. 66d4513 Piers Lauder: by Guido van Rossum · 24 years ago
  87. 1abd82c MBCS codecs for Windows. Contributed by Mark Hammond. by Guido van Rossum · 24 years ago
  88. dc8b798 Skip Montanaro: by Guido van Rossum · 24 years ago
  89. 89489fa Beefed up error-handling in 'setup()' a smidge: by Greg Ward · 24 years ago
  90. a3c8bf3 Duh, it helps if '_nt_quote_args()' actually returns the mutated list, by Greg Ward · 24 years ago
  91. cdb20ba Fixed a bunch of screwed-up logic and inconsistent terminology. by Greg Ward · 24 years ago
  92. 2f557a2 Added 'runtime_library_dirs' parameter to 'link_*()' methods, and warn that by Greg Ward · 24 years ago
  93. e21dabe Added 'runtime_library_dirs' parameter to 'link_*()' methods, and changed to by Greg Ward · 24 years ago
  94. f10f95d Added 'runtime_library_dirs' parameter to 'link_*()' methods. by Greg Ward · 24 years ago
  95. d8855fd Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  96. 7e57bc4 Fix the test so that connect() and bind() are called with a single by Guido van Rossum · 24 years ago
  97. d8fbcc9 Regenerated with test for 'contains'. by Guido van Rossum · 24 years ago
  98. a7540bd Import fix. by Greg Ward · 24 years ago
  99. e2a3307 Fixed '_nt_quote_args()': backwards logic reversed, and now it actually by Greg Ward · 24 years ago
  100. 297dd9f Fixed the class name. by Greg Ward · 24 years ago