1. a9b2b4b Remove some redundant logic from walk() -- there's no need to check by Guido van Rossum · 24 years ago
  2. 39d3bfc Fix a typo in a comment by Andrew M. Kuchling · 24 years ago
  3. 1ab41fc Fix comments relating to the specific regexs used to parse section and by Fred Drake · 24 years ago
  4. 619c337 Patch by Piers Lauder, who writes: by Guido van Rossum · 24 years ago
  5. c517b9b (Finally!) Changes related to the ConfigParser/INI-file topics by Fred Drake · 24 years ago
  6. 98d9fd3 Simple changes by Gerrit Holl - move author acknowledgements out of by Guido van Rossum · 24 years ago
  7. 84a7459 Patch by Gerrit Holl to avoid doing two stat() calls in a row in walk(). by Guido van Rossum · 24 years ago
  8. 0ba3300 Fix a typo in Barry's checkin. Reported both by Gerrit Holl and Mark Favas. by Guido van Rossum · 24 years ago
  9. d28de23 Fixed a multi-arg append() call, discovered by Mark Favas. by Guido van Rossum · 24 years ago
  10. 7a0620c Try to deal with pre-1.5.2 IOError exception objects. by Greg Ward · 24 years ago
  11. 4f08e4f Unfinished, untested implementation of the lovely baroque installation scheme by Greg Ward · 24 years ago
  12. 7d3f27c Changes inspired by Randall Hooper to allow callbacks when an by Barry Warsaw · 24 years ago
  13. f7221c3 Test case for fork1() behavior. by Guido van Rossum · 24 years ago
  14. e6674e6 Gerrit forgot to remove the "import string". by Guido van Rossum · 24 years ago
  15. a395ced Gerrit Holl's patch to move attribution from the docstring to a by Fred Drake · 24 years ago
  16. 2341794 Fix a couple broken append() calls, spotted by Tim. by Guido van Rossum · 24 years ago
  17. 3af7b05 Fix a broken r.append(name, value) call, spotted by Tim. by Guido van Rossum · 24 years ago
  18. d5062ba Moshe Zadka: Added docstrings to tkSimpleDialog.py by Guido van Rossum · 24 years ago
  19. 4840112 Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. by Greg Ward · 24 years ago
  20. 9811861 Mark Favas discovered this: getatime() accidentally returned the MTIME! by Guido van Rossum · 24 years ago
  21. 19ce91b Piers Lauder: by Guido van Rossum · 24 years ago
  22. 5ebfa2a Add tests to exercise sequence operations (multiplication, indexing, by Andrew M. Kuchling · 24 years ago
  23. dc68833 Added tabnanny.py, by Tim Peters, formerly from Tools/scripts, to the by Guido van Rossum · 24 years ago
  24. 772dd41 satisfy the tabnanny (thanks to MH for noticing the problem) by Jeremy Hylton · 24 years ago
  25. 42b9bc7 add TODO section by Greg Stein · 24 years ago
  26. 3bb578c reduce fsimp coupling: provide fs_imp param to ImportManager constructor, by Greg Stein · 24 years ago
  27. d4f1d20 shift demo importers to importers.py (destined for Demo/ ?) by Greg Stein · 24 years ago
  28. 18c05f2 Changed all references to command methods 'set_default_options()' and by Greg Ward · 24 years ago
  29. e01149c Renamed 'set_default_options()' to 'initialize_options()', and by Greg Ward · 24 years ago
  30. 4c96db1 Changed references to the command class 'options' attribute to 'user_options'. by Greg Ward · 24 years ago
  31. bbeceea Renamed all 'options' class attributes to 'user_options'. by Greg Ward · 24 years ago
  32. 592f282 Command classes are now named identically to their commands, so reflect this by Greg Ward · 24 years ago
  33. 1993f9a Renamed all command classes so they're exactly the same as the name of the by Greg Ward · 24 years ago
  34. e1b1c94 Changed 'dist' to 'sdist'. by Greg Ward · 24 years ago
  35. a82122b The 'sdist' command to create a source distribution. This is derived from the by Greg Ward · 24 years ago
  36. 3d6b023 The 'dist' command is dead -- long live the 'sdist' command! by Greg Ward · 24 years ago
  37. efd0694 changes to _lookupName by Jeremy Hylton · 24 years ago
  38. 3ec7e2c the previous quick hack to fix def foo((x,y)) failed on some cases by Jeremy Hylton · 24 years ago
  39. 7708d69 add varargs and kwargs flags to Lambda nodes by Jeremy Hylton · 24 years ago
  40. 873bdc1 satisfy the tabnanny by Jeremy Hylton · 24 years ago
  41. ef0b5dd Typo in a comment: "wheter" --> "whether" by Fred Drake · 24 years ago
  42. f36b182 Patches by Piers Lauder. by Guido van Rossum · 24 years ago
  43. 1efac33 Added WindowsError, for Mark Hammond's extensions. by Guido van Rossum · 24 years ago
  44. cba0436 Added test for new crc32() function. by Guido van Rossum · 24 years ago
  45. ad9a86f support for arglists with implicit tuple unpacks by Jeremy Hylton · 24 years ago
  46. 3d9f5e4 more robust assignment of lineno for keyword args by Jeremy Hylton · 24 years ago
  47. 2ce27b2 fix argcount generation for arg lists containing tuple unpacks by Jeremy Hylton · 24 years ago
  48. 65d4ea0 add flatten helper function by Jeremy Hylton · 24 years ago
  49. 4f6bcd8 finish first impl of code generator by Jeremy Hylton · 24 years ago
  50. 1ebba96 fix creation of Ellipsis node by Jeremy Hylton · 24 years ago
  51. 410e840 add a little debugging support when new.code raises SystemError by Jeremy Hylton · 24 years ago
  52. ae3d7920 no real change -- testing syncmail by Jeremy Hylton · 24 years ago
  53. d603dee add line numbers to nodes in the except clause (when possible) by Jeremy Hylton · 24 years ago
  54. ca1ad18 tidy up tryexcept and tryfinally nodes by Jeremy Hylton · 24 years ago
  55. 9e1cd68 edit a doc string (real intent is to test out rsync install) by Jeremy Hylton · 24 years ago
  56. a46fb38 get rid of spurious print by Jeremy Hylton · 24 years ago
  57. 126960b looks like everything is working except for try/except (pystone by Jeremy Hylton · 24 years ago
  58. 17988d2 LeftShift & RightShift: fix reprs, change attr names to left and right by Jeremy Hylton · 24 years ago
  59. b217687 Fix the question marks next to the expansions of some of the by Fred Drake · 24 years ago
  60. bf6267e rename several of the generic attribute names for nodes. new node attrs are: by Jeremy Hylton · 24 years ago
  61. 4290779 (), [], and {} should not be represented as constant expressions, they by Jeremy Hylton · 24 years ago
  62. a505812 split compile.py into two files by Jeremy Hylton · 24 years ago
  63. 3050d51 change MODULE_NAMESPACE/FUNCTION_NAMESPACE stuff to have a single flag by Jeremy Hylton · 24 years ago
  64. 76d01b8 add support for Lambda nodes by Jeremy Hylton · 24 years ago
  65. 5de8cee Ditched '_find_SET()', since it was a no-value-added wrapper around by Greg Ward · 24 years ago
  66. 6998809 Latest patch from Thomas Heller/Robin Becker: by Greg Ward · 24 years ago
  67. 4eb504c add loop handling via by Jeremy Hylton · 24 years ago
  68. 95b8614 add an __len__ to Set and Stack by Jeremy Hylton · 24 years ago
  69. 9dd7872 Added new exception classes: by Barry Warsaw · 24 years ago
  70. 3e0910c add namespace attr to CodeGenerator, can be either MODULE_NAMESPACE or by Jeremy Hylton · 24 years ago
  71. 13a2c27 Untabify to pass the -tt test. by Fred Drake · 24 years ago
  72. 857c4c3 Detabify. by Fred Drake · 24 years ago
  73. ad892dc Make this pass the -tt test. by Fred Drake · 24 years ago
  74. 62e3393 Stylistic changes to the registry-grovelling code: code formatting, changed by Greg Ward · 24 years ago
  75. 10ca82b Typecheck 'output_dir' argument to compile/link methods. by Greg Ward · 24 years ago
  76. 968d883 Path from Thomas Heller: resurrect the .def file kludge while preserving the by Greg Ward · 24 years ago
  77. 4ba9b2e Patch from Thomas heller: by Greg Ward · 24 years ago
  78. 5e0ce53 add ExampleASTVisitor: by Jeremy Hylton · 24 years ago
  79. 69926ea add remove method to set by Jeremy Hylton · 24 years ago
  80. e8c6ce4 Added 'debug' option, and changed compile/link calls to use it. by Greg Ward · 24 years ago
  81. 3246200 Added 'debug' option (just there for 'build_ext' and 'build_lib' commands by Greg Ward · 24 years ago
  82. 386b844 Added 'debug' flags to compile and link methods, and added dummy code for by Greg Ward · 24 years ago
  83. ba233fb Added 'debug' flags to compile and link methods, and modified code to add by Greg Ward · 24 years ago
  84. 3c045a5 Added 'debug' flag to compile and link method signatures. by Greg Ward · 24 years ago
  85. 4024560 add optional verbose arg to walk function. it overrides the global by Jeremy Hylton · 24 years ago
  86. 156a975 make all unary operators have a single child node called expr by Jeremy Hylton · 24 years ago
  87. 1851901 add spaces to comparison names is not and not in to match dis by Jeremy Hylton · 24 years ago
  88. 53187f3 now produces valid pyc files for a least a trivial subset of the language. by Jeremy Hylton · 24 years ago
  89. aa9d2d6 constants from transformer by Jeremy Hylton · 24 years ago
  90. 9605c11 move constants out of transformer so that they can be shared with ast by Jeremy Hylton · 24 years ago
  91. 69e2c6e get_config_h_filename(): Support NT as well as Posix systems. by Fred Drake · 24 years ago
  92. 1b9c6f7 Revised version (thank to Thomas Heller and Robin Becker) that tries a lot by Greg Ward · 24 years ago
  93. f0219ba Ditch .def file kludge for (much smaller) /export option kludge. by Greg Ward · 24 years ago
  94. a710d6e Added test case for accessing gsbm database by key after it's closed; by Fred Drake · 24 years ago
  95. 1bea7ab Added 'libraries' option for use by the 'build_lib' command. Typo fix. by Greg Ward · 24 years ago
  96. 5f7c18e Run the 'build_lib' command before building extensions, if necessary. by Greg Ward · 24 years ago
  97. aaf27ee New command to build C (and C++, hopefully) libraries needed by extensions by Greg Ward · 24 years ago
  98. c185467 Tweaked various comments, docstrings, and error messages. by Greg Ward · 24 years ago
  99. 0fdffcf rapid evolution towards producing real .pyc files (even though I don't by Jeremy Hylton · 24 years ago
  100. 1fdae12 Added a simple test program to disassemble a file, invoked as __main__. by Guido van Rossum · 24 years ago