1. 8b6323d checking in initial weekend's work by Jeremy Hylton · 25 years ago
  2. 106a02d make p2c a package by Jeremy Hylton · 25 years ago
  3. f968e85 three files from the p2c cvs tree. the message here indicates the by Jeremy Hylton · 25 years ago
  4. 7f0fb0b Improved an error message. by Greg Ward · 25 years ago
  5. ef6f515 Changed 'compile()' method to compile files one-at-a-time -- gives better by Greg Ward · 25 years ago
  6. d89ffeb These modules are now declared obsolete. by Fred Drake · 25 years ago
  7. 43265be # module filecmp by Guido van Rossum · 25 years ago
  8. 75a7959 In _fileobject, optimize read() a bit (it could be really slow), and by Guido van Rossum · 25 years ago
  9. 823e91c Optimize abspath() slightly for the case that win32api can't be by Guido van Rossum · 25 years ago
  10. 5606801 Make read() and readlines() conform more to the file object interface: by Guido van Rossum · 25 years ago
  11. 4acc25b Mass patch by Ka-Ping Yee: by Guido van Rossum · 25 years ago
  12. 113e70e Patch from Joe Van Andel: fix arg to % operator in warning. by Greg Ward · 25 years ago
  13. a0ca3f2 Comment fix. by Greg Ward · 25 years ago
  14. 3c8baed Sjoerd Mullender writes: by Guido van Rossum · 25 years ago
  15. d1466b9 Allow either README or README.txt as a "standard file". by Greg Ward · 25 years ago
  16. a002edc Fixed broken list extend in 'copy_tree()'. by Greg Ward · 25 years ago
  17. 37bc815 Added 'description' class attribute to every command class (to help the by Greg Ward · 25 years ago
  18. 4c67936 Added 'dist' command. by Greg Ward · 25 years ago
  19. f0fd617 Improvements to the help system: by Greg Ward · 25 years ago
  20. 7478a48 Added missing run of corresponding 'build' command. by Greg Ward · 25 years ago
  21. 6d7e47b EXPERIMENTAL by Jeremy Hylton · 25 years ago
  22. 331f19e Change two occurrences of type(x) <> types.CodeType into by Guido van Rossum · 25 years ago
  23. 9f200cb Fix indentation bug. by Greg Ward · 25 years ago
  24. 3b49c9b Catch OSError from 'spawnv()' in '_spawn_nt()'. by Greg Ward · 25 years ago
  25. 01f5215 Removed /GD switch -- currently ignored by MSVC. by Greg Ward · 25 years ago
  26. 8dbf681 Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded by Greg Ward · 25 years ago
  27. 1b3a9af Added missing import. by Greg Ward · 25 years ago
  28. cbeca7b Added code to use Jim Ahlstrom's zipfile.py module if the external zip by Greg Ward · 25 years ago
  29. c8a95c8 Fix library filename methods -- there is no 'lib' prefix under DOS/Windows. by Greg Ward · 25 years ago
  30. c27d800 Always run sys.prefix and sys.exec_prefix through 'os.path.normpath()' by Greg Ward · 25 years ago
  31. 7c463ef Ditch unneeded imports. by Greg Ward · 25 years ago
  32. 1d2b23e Fix by Nick Russo in processing of timezone in test program; the by Guido van Rossum · 25 years ago
  33. 7b7679e 'newer_group()' can now deal with missing files, in a way specified by by Greg Ward · 25 years ago
  34. c9f3187 Abstracted '_fix_link_args()' out of 'link_shared_object()'. by Greg Ward · 25 years ago
  35. 5baf1c2 Removed a bunch of irrelevant parameters from 'link_static_lib()' signature. by Greg Ward · 25 years ago
  36. e9436da Typo fix: 'file.warn' should have been 'manifest.warn' in a couple of places. by Greg Ward · 25 years ago
  37. d2783da The correct RFC to reference is RFC-1521 (MIME part one), not 1421 (PEM). by Guido van Rossum · 25 years ago
  38. f23aa1e redesign/rebuild around the ImportManager concept. by Greg Stein · 25 years ago
  39. db1bd5c Revise tests to support str(<long int object>) not appending "L". by Fred Drake · 25 years ago
  40. fbff97a Don't call len() if the value is already cached! Caught by Gerrit by Fred Drake · 25 years ago
  41. 80c33e5 Contribution from Gerrit Holl: by Guido van Rossum · 25 years ago
  42. 9d46b9c When emitting a command-line error message, *say* it's an error. by Greg Ward · 25 years ago
  43. ad83f04 Catch errors from 'rmtree' and emit a warning. by Greg Ward · 25 years ago
  44. cd97576 Only set msg.fp to None when there are no extra arguments; if there by Guido van Rossum · 25 years ago
  45. 8c06221 V 2.16 from Piers: by Guido van Rossum · 25 years ago
  46. 97798b1 Use 'search', not 'match', on filename pattern regexes. by Greg Ward · 25 years ago
  47. 0bdd90a Catch up with terminology change in UnixCCompiler: 'includes' -> 'include_dirs'. by Greg Ward · 25 years ago
  48. 1d0495e Catch missing MANIFEST file and warn rather than blowing up. by Greg Ward · 25 years ago
  49. 9b45443 Fixed 'find_package_modules()' to ensure that we never build (and thus by Greg Ward · 25 years ago
  50. 48697d9 Changed 'build_extensions()' so 'sources' can be a list or tuple; and by Greg Ward · 25 years ago
  51. 04d7832 In 'compile()' method, renamed 'includes' parameter to 'include_dirs' for by Greg Ward · 25 years ago
  52. 44f8e4e Added support for printing out help text from option table: 'print_help()', by Greg Ward · 25 years ago
  53. c9c37b1 Made "verbose" mode the default; now you have to supply --quiet if you by Greg Ward · 25 years ago
  54. 09c8b6c OpenSSL support. This is based on patches for a version of SSLeay by by Guido van Rossum · 25 years ago
  55. 5274c33 According to Craig H Rowland, openbsd2 is yet another BSD variant that by Guido van Rossum · 25 years ago
  56. 631e6a0 [from 1999-11-04] by Greg Ward · 25 years ago
  57. 6dfc792 In abspath(), always use normpath(), even when win32api is available by Guido van Rossum · 25 years ago
  58. d25c1b7 A bunch of docstring fixes. by Barry Warsaw · 25 years ago
  59. 32efef3 look for builtins before stuff on the path. by Greg Stein · 25 years ago
  60. 2b23413 add loading of dynamic library modules. by Greg Stein · 25 years ago
  61. 7ec28d2 turn SysPathImporter into PathImporter. by Greg Stein · 25 years ago
  62. 72ee435 remove the __version__ global. by Greg Stein · 25 years ago
  63. 6d3165a only put __path__ into package modules. by Greg Stein · 25 years ago
  64. 63faa01 shift code from DirectoryImporter out to a common area. by Greg Stein · 25 years ago
  65. d7b147b Moshe Zadka writes: When deploying SimpleHTTPServer, I noticed a by Guido van Rossum · 25 years ago
  66. 77980a7 Correct typo in module doc string doscovered by Jonathan Giddy. by Guido van Rossum · 25 years ago
  67. 768d227 Oops. Remove some garbage from the doc string that was accidentally by Guido van Rossum · 25 years ago
  68. d4c64ba Add some header comments to all the files. by Greg Stein · 25 years ago
  69. 281b8d8 initial checkin for my Python stuff. by Greg Stein · 25 years ago
  70. e4f1366 split() docstring: Made signature and description for the first by Fred Drake · 25 years ago
  71. 19878f5 Sjoerd Mullender writes: by Guido van Rossum · 25 years ago
  72. dd7cbbf Oops. spawnl() and spawnle() should be implemented on Windows too. by Guido van Rossum · 25 years ago
  73. f618a48 Correct typo in walk.__doc__ reported by Francois Pinard. by Guido van Rossum · 25 years ago
  74. 5a2ca93 Checking in a bunch of spawn functions. These are only defined if we by Guido van Rossum · 25 years ago
  75. 2d72687 New module by Moshe Zadka (submitted on Sept. 25). This unifies the by Guido van Rossum · 25 years ago
  76. 4e20de5 Patch by Michael Hudson: when the object of attribute expansion is a by Guido van Rossum · 25 years ago
  77. d65b539 Fix by Moshe Zadka (cleaned up and documented by GvR) to break out the by Guido van Rossum · 25 years ago
  78. e1ada50 Don't assume GNU tar -- generate tar file and compress in separate steps. by Greg Ward · 25 years ago
  79. d6c30f6 Removed massive comment speculating about needlessly complex variations by Greg Ward · 25 years ago
  80. 346e320 Qualified use of 'newer_group' function. by Greg Ward · 25 years ago
  81. 6bad864 Fix how we run 'zip' -- give explicit .zip extension. by Greg Ward · 25 years ago
  82. bda10c8 In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just by Guido van Rossum · 25 years ago
  83. 8fa42af Fix PR#107: wm_colormapwindows() did the wrong thing when presented by Guido van Rossum · 25 years ago
  84. 910d9a0 Test output. by Guido van Rossum · 25 years ago
  85. fdecda0 Rewritten -- this now tests the binascii *except* for the binhex by Guido van Rossum · 25 years ago
  86. a0e85b2 Test output for test_binhex.py. by Guido van Rossum · 25 years ago
  87. 7b8f1ab This test really only tests the binhex module. by Guido van Rossum · 25 years ago
  88. 88d2330 print a warning if the password will be echoed. by Jeremy Hylton · 25 years ago
  89. f8d8e07 Fixed PR#106: winfo_visualsavailable() with the includeids=1 option by Guido van Rossum · 25 years ago
  90. dcb8583 Fix for PR#111: when using the inplace option, give the new file the by Guido van Rossum · 25 years ago
  91. 14bb71d os.fork raises AttributeError, not NameError, if fork() isn't by Fred Drake · 25 years ago
  92. 40e84db Based on comments from Paul Prescod: by Fred Drake · 25 years ago
  93. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  94. 7526027 update to use threading module instead of thread. by Jeremy Hylton · 25 years ago
  95. 2539451 fixed a typo in a docstring, and slightly expanded the module by Barry Warsaw · 25 years ago
  96. 1b7aec3 Fix PR#31 -- zfill() mishandles empty string. by Guido van Rossum · 25 years ago
  97. 08a92cb Jeremy writes: by Guido van Rossum · 25 years ago
  98. d8957d6 Fix PR#3, submitted by Skip Montanaro: if no space appears after the by Guido van Rossum · 25 years ago
  99. a5a24b7 Added has_option(); fix bug in get() which botched interpolation if by Guido van Rossum · 25 years ago
  100. 6a8d84b Urmpfh! by Guido van Rossum · 25 years ago