1. 9d46b9c When emitting a command-line error message, *say* it's an error. by Greg Ward · 25 years ago
  2. ad83f04 Catch errors from 'rmtree' and emit a warning. by Greg Ward · 25 years ago
  3. cd97576 Only set msg.fp to None when there are no extra arguments; if there by Guido van Rossum · 25 years ago
  4. 8c06221 V 2.16 from Piers: by Guido van Rossum · 25 years ago
  5. 97798b1 Use 'search', not 'match', on filename pattern regexes. by Greg Ward · 25 years ago
  6. 0bdd90a Catch up with terminology change in UnixCCompiler: 'includes' -> 'include_dirs'. by Greg Ward · 25 years ago
  7. 1d0495e Catch missing MANIFEST file and warn rather than blowing up. by Greg Ward · 25 years ago
  8. 9b45443 Fixed 'find_package_modules()' to ensure that we never build (and thus by Greg Ward · 25 years ago
  9. 48697d9 Changed 'build_extensions()' so 'sources' can be a list or tuple; and by Greg Ward · 25 years ago
  10. 04d7832 In 'compile()' method, renamed 'includes' parameter to 'include_dirs' for by Greg Ward · 25 years ago
  11. 44f8e4e Added support for printing out help text from option table: 'print_help()', by Greg Ward · 25 years ago
  12. c9c37b1 Made "verbose" mode the default; now you have to supply --quiet if you by Greg Ward · 25 years ago
  13. 09c8b6c OpenSSL support. This is based on patches for a version of SSLeay by by Guido van Rossum · 25 years ago
  14. 5274c33 According to Craig H Rowland, openbsd2 is yet another BSD variant that by Guido van Rossum · 25 years ago
  15. 631e6a0 [from 1999-11-04] by Greg Ward · 25 years ago
  16. 6dfc792 In abspath(), always use normpath(), even when win32api is available by Guido van Rossum · 25 years ago
  17. d25c1b7 A bunch of docstring fixes. by Barry Warsaw · 25 years ago
  18. 32efef3 look for builtins before stuff on the path. by Greg Stein · 25 years ago
  19. 2b23413 add loading of dynamic library modules. by Greg Stein · 25 years ago
  20. 7ec28d2 turn SysPathImporter into PathImporter. by Greg Stein · 25 years ago
  21. 72ee435 remove the __version__ global. by Greg Stein · 25 years ago
  22. 6d3165a only put __path__ into package modules. by Greg Stein · 25 years ago
  23. 63faa01 shift code from DirectoryImporter out to a common area. by Greg Stein · 25 years ago
  24. d7b147b Moshe Zadka writes: When deploying SimpleHTTPServer, I noticed a by Guido van Rossum · 25 years ago
  25. 77980a7 Correct typo in module doc string doscovered by Jonathan Giddy. by Guido van Rossum · 25 years ago
  26. 768d227 Oops. Remove some garbage from the doc string that was accidentally by Guido van Rossum · 25 years ago
  27. d4c64ba Add some header comments to all the files. by Greg Stein · 25 years ago
  28. 281b8d8 initial checkin for my Python stuff. by Greg Stein · 25 years ago
  29. e4f1366 split() docstring: Made signature and description for the first by Fred Drake · 25 years ago
  30. 19878f5 Sjoerd Mullender writes: by Guido van Rossum · 25 years ago
  31. dd7cbbf Oops. spawnl() and spawnle() should be implemented on Windows too. by Guido van Rossum · 25 years ago
  32. f618a48 Correct typo in walk.__doc__ reported by Francois Pinard. by Guido van Rossum · 25 years ago
  33. 5a2ca93 Checking in a bunch of spawn functions. These are only defined if we by Guido van Rossum · 25 years ago
  34. 2d72687 New module by Moshe Zadka (submitted on Sept. 25). This unifies the by Guido van Rossum · 25 years ago
  35. 4e20de5 Patch by Michael Hudson: when the object of attribute expansion is a by Guido van Rossum · 25 years ago
  36. d65b539 Fix by Moshe Zadka (cleaned up and documented by GvR) to break out the by Guido van Rossum · 25 years ago
  37. e1ada50 Don't assume GNU tar -- generate tar file and compress in separate steps. by Greg Ward · 25 years ago
  38. d6c30f6 Removed massive comment speculating about needlessly complex variations by Greg Ward · 25 years ago
  39. 346e320 Qualified use of 'newer_group' function. by Greg Ward · 25 years ago
  40. 6bad864 Fix how we run 'zip' -- give explicit .zip extension. by Greg Ward · 25 years ago
  41. bda10c8 In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just by Guido van Rossum · 25 years ago
  42. 8fa42af Fix PR#107: wm_colormapwindows() did the wrong thing when presented by Guido van Rossum · 25 years ago
  43. 910d9a0 Test output. by Guido van Rossum · 25 years ago
  44. fdecda0 Rewritten -- this now tests the binascii *except* for the binhex by Guido van Rossum · 25 years ago
  45. a0e85b2 Test output for test_binhex.py. by Guido van Rossum · 25 years ago
  46. 7b8f1ab This test really only tests the binhex module. by Guido van Rossum · 25 years ago
  47. 88d2330 print a warning if the password will be echoed. by Jeremy Hylton · 25 years ago
  48. f8d8e07 Fixed PR#106: winfo_visualsavailable() with the includeids=1 option by Guido van Rossum · 25 years ago
  49. dcb8583 Fix for PR#111: when using the inplace option, give the new file the by Guido van Rossum · 25 years ago
  50. 14bb71d os.fork raises AttributeError, not NameError, if fork() isn't by Fred Drake · 25 years ago
  51. 40e84db Based on comments from Paul Prescod: by Fred Drake · 25 years ago
  52. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  53. 7526027 update to use threading module instead of thread. by Jeremy Hylton · 25 years ago
  54. 2539451 fixed a typo in a docstring, and slightly expanded the module by Barry Warsaw · 25 years ago
  55. 1b7aec3 Fix PR#31 -- zfill() mishandles empty string. by Guido van Rossum · 25 years ago
  56. 08a92cb Jeremy writes: by Guido van Rossum · 25 years ago
  57. d8957d6 Fix PR#3, submitted by Skip Montanaro: if no space appears after the by Guido van Rossum · 25 years ago
  58. a5a24b7 Added has_option(); fix bug in get() which botched interpolation if by Guido van Rossum · 25 years ago
  59. 6a8d84b Urmpfh! by Guido van Rossum · 25 years ago
  60. 2438a48 ConfigParser.read(): Don't mask IOError exceptions. by Fred Drake · 25 years ago
  61. ef93095 Filter 'glob()' results so we only look at regular files. by Greg Ward · 25 years ago
  62. 3c6204a Pass 'force' flag to 'new_compiler()'. by Greg Ward · 25 years ago
  63. 455eb61 Don't import what we don't use. by Greg Ward · 25 years ago
  64. ef9ad6d Tweaked verbosity messages for byte-compilation. by Greg Ward · 25 years ago
  65. 0c35ac6 Added 'force' and 'quiet' (negative alias for 'verbose') to the by Greg Ward · 25 years ago
  66. f3b997a Fixed 'mkpath()' to normalize the path right off the bat -- cleans up by Greg Ward · 25 years ago
  67. a564cc3 Hacked to support the notion of "negative alias" options, to handle by Greg Ward · 25 years ago
  68. c74138d Catch up with changes in 'gen_lib_options()': by Greg Ward · 25 years ago
  69. 4fecfce Fixed order of link options: object files now precede library stuff. by Greg Ward · 25 years ago
  70. 3febd60 Slight change to the meaning of the 'libraries' list: if a library name by Greg Ward · 25 years ago
  71. 8e7eaa8 Duncan Grisby noted a typo in _DummyThread. by Guido van Rossum · 25 years ago
  72. b24afe1 Added 'list_only' option (and modified 'run()' to respect it). by Greg Ward · 25 years ago
  73. 274ad9d Added all documentation. by Greg Ward · 25 years ago
  74. ef4490f New command to generate source distribution based on a manifest file. by Greg Ward · 25 years ago
  75. a6cb8ae Added 'package' option. by Greg Ward · 25 years ago
  76. 2a61206 Renamed 'dir' option to be consistent with other commands. by Greg Ward · 25 years ago
  77. e6ac2fc Renamed many options to be consistent across commands. by Greg Ward · 25 years ago
  78. df178f9 Catch up with latest changes in CCompiler: by Greg Ward · 25 years ago
  79. 0e3530b Catch up with latest changes in CCompiler: by Greg Ward · 25 years ago
  80. 802d6b7 Added 'extra_preargs' and 'extra_postargs' parameters to most methods, by Greg Ward · 25 years ago
  81. cd1486f More tweaks to 'mkpath()': by Greg Ward · 25 years ago
  82. 3868eb9 Added 'ready' flag and 'ensure_ready()' method to Command: together by Greg Ward · 25 years ago
  83. da2d352 Added docstring and RCS id (apparently some Windows tar extractors by Greg Ward · 25 years ago
  84. df0d335 Ditched the whole notion of "alias options": this meant dropping the by Greg Ward · 25 years ago
  85. ac1424a Added 'write_file()' function. by Greg Ward · 25 years ago
  86. b116e45 In 'link_shared_object()', try to be less sensitive to missing input files by Greg Ward · 25 years ago
  87. fbf8aff Typecheck elements of 'macros' parameter in 'gen_preprocess_options(). by Greg Ward · 25 years ago
  88. d4b8429 Added docstring, brought __all__ up-to-date. by Greg Ward · 25 years ago
  89. 865de83 Added 'install_path' option for giving non-packagized module by Greg Ward · 25 years ago
  90. 02e1c56 Only run build_py if we have pure Python modules, and build_ext if we by Greg Ward · 25 years ago
  91. dbb9625 Some option changes: by Greg Ward · 25 years ago
  92. 17dc6e7 Basically a complete rewrite to support dealing with modules in whole by Greg Ward · 25 years ago
  93. ea7364c Peter Haight discovered that this code uses a mutable default for cnf by Guido van Rossum · 25 years ago
  94. f3c5f5c After much hemming and hawing, we decided to roll back Fred's change. by Guido van Rossum · 25 years ago
  95. ba895d8 Typo: the method called is do_SPAM, not handle_SPAM. by Guido van Rossum · 25 years ago
  96. 0079b28 Put Sam Rushing's original RCS ID string back, without dollars around it. by Guido van Rossum · 25 years ago
  97. c2b6de5 Put Sam Rushing's original RCS ID string back, without dollars around it. by Guido van Rossum · 25 years ago
  98. fa4eb18 Changed selection of installation directories (in 'set_final_options()') by Greg Ward · 25 years ago
  99. c9c011c Straightened up the selection of installation directories for platform- by Greg Ward · 25 years ago
  100. 609a5c8 Added support for 'package' option, including where to link the by Greg Ward · 25 years ago