1. d03f88a Changed to pay attention to the 'runtime_library_dirs' list (= 'rpath' by Greg Ward · 24 years ago
  2. 908670c Oops, another in the same file; I should read the mail fully before by Fred Drake · 24 years ago
  3. 3e74c0d "intput" --> "input" (in docstring); noted by Detlef Lannert by Fred Drake · 24 years ago
  4. 36cc6a2 complete rewrite by Jeremy Hylton · 24 years ago
  5. f635abe simplify visitor walker class by Jeremy Hylton · 24 years ago
  6. b631b8e fix list.append problems by Jeremy Hylton · 24 years ago
  7. e4d6293 change name of Set method: items -> elements (avoids confusion with dict) by Jeremy Hylton · 24 years ago
  8. d4d2684 Marc-Andre Lemburg: Add tests for mixed use of char in string. by Guido van Rossum · 24 years ago
  9. a831cac Marc-Andre Lemburg: test script for Unicode implementation. by Guido van Rossum · 24 years ago
  10. 8f0c5a7 Marc-Andre Lemburg: the maxsplit argument for split() and replace() by Guido van Rossum · 24 years ago
  11. 0612d84 Module codecs -- Python Codec Registry, API and helpers. Written by by Guido van Rossum · 24 years ago
  12. b5f2f1b Marc-Andre Lemburg: support pickling Unicode objects, both in text by Guido van Rossum · 24 years ago
  13. 85eacec Marc-Andre Lemburg: add UnicodeType. by Guido van Rossum · 24 years ago
  14. 0229bf6 Marc-Andre Lemburg: Unicode encodings. by Guido van Rossum · 24 years ago
  15. 21288ed Marc-Andre Lemburg: Add UnicodeError, derived from ValueError. by Guido van Rossum · 24 years ago
  16. 92f3377 Catch up with change to CCompiler API: call 'create_static_lib()', not by Greg Ward · 24 years ago
  17. 09fc542 Renamed 'link_static_lib() to 'create_static_lib()', and rewrote it create by Greg Ward · 24 years ago
  18. 036c805 Renamed 'link_static_lib() to 'create_static_lib()'. by Greg Ward · 24 years ago
  19. c1ee39a There are a few places which can raise DistutilsPlatformError; make by Fred Drake · 24 years ago
  20. 7d73b9e Added Joe Van Andel's 'get_python_inc()', adapted by me to supply by Greg Ward · 24 years ago
  21. da2361a Add tests for char in string -- including required exceptions for by Guido van Rossum · 24 years ago
  22. 2663c13 Sjoerd Mullender: by Guido van Rossum · 24 years ago
  23. 911d866 Patch from Corran Webster <cwebster@nevada.edu> (tweaked for style by me): by Greg Ward · 24 years ago
  24. 0eff87a Patch from Corran Webster <cwebster@nevada.edu>: add '_init_mac()'. by Greg Ward · 24 years ago
  25. 5091929 Added 'native_path()' for use on pathnames from the setup script: split on by Greg Ward · 24 years ago
  26. e2b4452 Added '_nt_quote_args()' to deal with whitespace in command-line arguments by Greg Ward · 24 years ago
  27. 7344741 test_contains output by Guido van Rossum · 24 years ago
  28. 24512e6 Test cases for __contains__ code, by Moshe Zadka. by Guido van Rossum · 24 years ago
  29. e85c93f Sjoerd Mullender: by Guido van Rossum · 24 years ago
  30. f728f9a1 import compile function form pycodegen by Jeremy Hylton · 24 years ago
  31. 7fab23e rename compile.py to pycodegen.py by Jeremy Hylton · 24 years ago
  32. 8c78341 add a doc string import some useful functions from contained modules by Jeremy Hylton · 24 years ago
  33. 9812e7b fix import to refer to compiler package by Jeremy Hylton · 24 years ago
  34. abd7ebf revise arguments for addCode method on lnotab. take several numbers by Jeremy Hylton · 24 years ago
  35. fa974a9 change node Classdef to Class by Jeremy Hylton · 24 years ago
  36. ed95861 factor out the tree walking/visitor code that was in compile.py by Jeremy Hylton · 24 years ago
  37. 9552665 Rewrote 'newer_pairwise(): more natural (and incompatible) interface, by Greg Ward · 24 years ago
  38. 32c4a8a Serious overhaul of the C compiler interface and the two classes that by Greg Ward · 24 years ago
  39. eb3f75e Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used. by Greg Ward · 24 years ago
  40. 4ba5da4 Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used. by Greg Ward · 24 years ago
  41. 820314e allow comments beginning with ; in key: value as well as key = value by Jeremy Hylton · 24 years ago
  42. 56359f5 Typo fix. by Greg Ward · 24 years ago
  43. 96182d7 Fixed 'mkpath()' to accept empty string silently (it's just the current dir). by Greg Ward · 24 years ago
  44. 76ec0d6 Renamed 'build_lib' command to 'build_clib': by Greg Ward · 24 years ago
  45. 3ce77fd Changed '__rcsid__' to '__revision__'. by Greg Ward · 24 years ago
  46. 60f6433 If the "build_lib" command built any C libraries, link with them all by Greg Ward · 24 years ago
  47. 833dfd5 Added command description. by Greg Ward · 24 years ago
  48. 49ffce1 In the 'compile()' method: preserve the directory portion of source by Greg Ward · 24 years ago
  49. f114657 In compile/link methods: ensure that the directory we expect to be writing to by Greg Ward · 24 years ago
  50. 013f0c8 Added 'mkpath()' method: convenience wrapper around 'util.mkpath()' that adds by Greg Ward · 24 years ago
  51. 611850b Added call to 'ensure_ready()' on the command object in by Greg Ward · 24 years ago
  52. 585df89 Added 'get_platform()' to construct a string that identifies the current by Greg Ward · 24 years ago
  53. e51d69e Build reorg: by Greg Ward · 24 years ago
  54. 42a3bf5 Build reorg: by Greg Ward · 24 years ago
  55. e691651 Build reorg: change 'build_dir' option to 'build_lib'. by Greg Ward · 24 years ago
  56. a9b2b4b Remove some redundant logic from walk() -- there's no need to check by Guido van Rossum · 24 years ago
  57. 39d3bfc Fix a typo in a comment by Andrew M. Kuchling · 25 years ago
  58. 1ab41fc Fix comments relating to the specific regexs used to parse section and by Fred Drake · 25 years ago
  59. 619c337 Patch by Piers Lauder, who writes: by Guido van Rossum · 25 years ago
  60. c517b9b (Finally!) Changes related to the ConfigParser/INI-file topics by Fred Drake · 25 years ago
  61. 98d9fd3 Simple changes by Gerrit Holl - move author acknowledgements out of by Guido van Rossum · 25 years ago
  62. 84a7459 Patch by Gerrit Holl to avoid doing two stat() calls in a row in walk(). by Guido van Rossum · 25 years ago
  63. 0ba3300 Fix a typo in Barry's checkin. Reported both by Gerrit Holl and Mark Favas. by Guido van Rossum · 25 years ago
  64. d28de23 Fixed a multi-arg append() call, discovered by Mark Favas. by Guido van Rossum · 25 years ago
  65. 7a0620c Try to deal with pre-1.5.2 IOError exception objects. by Greg Ward · 25 years ago
  66. 4f08e4f Unfinished, untested implementation of the lovely baroque installation scheme by Greg Ward · 25 years ago
  67. 7d3f27c Changes inspired by Randall Hooper to allow callbacks when an by Barry Warsaw · 25 years ago
  68. f7221c3 Test case for fork1() behavior. by Guido van Rossum · 25 years ago
  69. e6674e6 Gerrit forgot to remove the "import string". by Guido van Rossum · 25 years ago
  70. a395ced Gerrit Holl's patch to move attribution from the docstring to a by Fred Drake · 25 years ago
  71. 2341794 Fix a couple broken append() calls, spotted by Tim. by Guido van Rossum · 25 years ago
  72. 3af7b05 Fix a broken r.append(name, value) call, spotted by Tim. by Guido van Rossum · 25 years ago
  73. d5062ba Moshe Zadka: Added docstrings to tkSimpleDialog.py by Guido van Rossum · 25 years ago
  74. 4840112 Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. by Greg Ward · 25 years ago
  75. 9811861 Mark Favas discovered this: getatime() accidentally returned the MTIME! by Guido van Rossum · 25 years ago
  76. 19ce91b Piers Lauder: by Guido van Rossum · 25 years ago
  77. 5ebfa2a Add tests to exercise sequence operations (multiplication, indexing, by Andrew M. Kuchling · 25 years ago
  78. dc68833 Added tabnanny.py, by Tim Peters, formerly from Tools/scripts, to the by Guido van Rossum · 25 years ago
  79. 772dd41 satisfy the tabnanny (thanks to MH for noticing the problem) by Jeremy Hylton · 25 years ago
  80. 42b9bc7 add TODO section by Greg Stein · 25 years ago
  81. 3bb578c reduce fsimp coupling: provide fs_imp param to ImportManager constructor, by Greg Stein · 25 years ago
  82. d4f1d20 shift demo importers to importers.py (destined for Demo/ ?) by Greg Stein · 25 years ago
  83. 18c05f2 Changed all references to command methods 'set_default_options()' and by Greg Ward · 25 years ago
  84. e01149c Renamed 'set_default_options()' to 'initialize_options()', and by Greg Ward · 25 years ago
  85. 4c96db1 Changed references to the command class 'options' attribute to 'user_options'. by Greg Ward · 25 years ago
  86. bbeceea Renamed all 'options' class attributes to 'user_options'. by Greg Ward · 25 years ago
  87. 592f282 Command classes are now named identically to their commands, so reflect this by Greg Ward · 25 years ago
  88. 1993f9a Renamed all command classes so they're exactly the same as the name of the by Greg Ward · 25 years ago
  89. e1b1c94 Changed 'dist' to 'sdist'. by Greg Ward · 25 years ago
  90. a82122b The 'sdist' command to create a source distribution. This is derived from the by Greg Ward · 25 years ago
  91. 3d6b023 The 'dist' command is dead -- long live the 'sdist' command! by Greg Ward · 25 years ago
  92. efd0694 changes to _lookupName by Jeremy Hylton · 25 years ago
  93. 3ec7e2c the previous quick hack to fix def foo((x,y)) failed on some cases by Jeremy Hylton · 25 years ago
  94. 7708d69 add varargs and kwargs flags to Lambda nodes by Jeremy Hylton · 25 years ago
  95. 873bdc1 satisfy the tabnanny by Jeremy Hylton · 25 years ago
  96. ef0b5dd Typo in a comment: "wheter" --> "whether" by Fred Drake · 25 years ago
  97. f36b182 Patches by Piers Lauder. by Guido van Rossum · 25 years ago
  98. 1efac33 Added WindowsError, for Mark Hammond's extensions. by Guido van Rossum · 25 years ago
  99. cba0436 Added test for new crc32() function. by Guido van Rossum · 25 years ago
  100. ad9a86f support for arglists with implicit tuple unpacks by Jeremy Hylton · 25 years ago