1. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  2. 9ada3d6 Merge trunk up to 43069, putting re.py back and hopefully making the branch by Thomas Wouters · 18 years ago
  3. 725ccd1 Merge trunk's 43068, deleting re.py. This leaves the branch in a broken by Thomas Wouters · 18 years ago
  4. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 18 years ago
  5. d858f70 Fix the problems in this test. Boy this is a painful thing to debug -- by Guido van Rossum · 18 years ago
  6. 303de6a Fix (and add test for) missing check for BaseException subclasses in the C API. by Thomas Wouters · 18 years ago
  7. 4f564bd Fix typical truedivision problem (using the result of division as an index.) by Thomas Wouters · 18 years ago
  8. a48a3b4 Fix test failures for repr.py. by Guido van Rossum · 18 years ago
  9. 08a1a9f Use explicit relative import for an, ehm, relative import. by Thomas Wouters · 18 years ago
  10. 7ea7d90 Fix the expected output file; new classes just behave differently... by Guido van Rossum · 18 years ago
  11. 69e8084 Fix two errors that prevented "make libinstall" from working: by Guido van Rossum · 18 years ago
  12. 07519f8 Fix xrange tests now that xrange() (like many other places) no longer by Thomas Wouters · 18 years ago
  13. 4cdada9 Make test_class work (but still fail) even though class.__dict__ is now a by Thomas Wouters · 18 years ago
  14. 1034dad Adjust test_enumerate to accomodate for iter() blowing up sooner than by Thomas Wouters · 18 years ago
  15. c947123 Fix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily) by Thomas Wouters · 18 years ago
  16. 725af87 - Remove tests for classic class behaviour by Thomas Wouters · 18 years ago
  17. 1ae9afa Fix test_bisect in the same way as test_itertools: iter() blows up a lot by Thomas Wouters · 18 years ago
  18. 3472903 Fix the superficial augmented-assignment tests to deal with true division. by Thomas Wouters · 18 years ago
  19. 8690c4e Fix tests that were trying to make iteration blow up, on broken iterators. by Thomas Wouters · 18 years ago
  20. 0725cf2 Remove tests for classic-class and mixed-classic-class/new-style behaviour. by Thomas Wouters · 18 years ago
  21. 28bc768 - Fix doctest results to account for classes being new-style, and thus by Thomas Wouters · 18 years ago
  22. c6fe059 Use absolute import. (Should this go into 2.5?) by Neal Norwitz · 18 years ago
  23. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  24. ed483ba String exceptions are gone and so are classic classes. by Neal Norwitz · 18 years ago
  25. 28c3198 Use *absolute* imports now that they are required. (Should this go into 2.5?) by Neal Norwitz · 18 years ago
  26. 1e32b69 Must inherit from Exception now. by Neal Norwitz · 18 years ago
  27. 2def11a Use *absolute* imports now that they are required. (Should this go into 2.5?) by Neal Norwitz · 18 years ago
  28. c3e54b8 Use *absolute* import now that it is required. (Should this go into 2.5? Hopefully not the bogus comment about using relative imports. That was just to see if anyone was paying attention.) by Neal Norwitz · 18 years ago
  29. 16d6510 Use relative import now that it is required. (Should this go into 2.5?) by Neal Norwitz · 18 years ago
  30. 2a0c780 Use relative import now that it is required. (Should this go into 2.5?) by Neal Norwitz · 18 years ago
  31. 2b49943 Ok, compiler.transformer can really be imported now by Neal Norwitz · 18 years ago
  32. 0fb4376 Must inherit from Exception now. by Neal Norwitz · 18 years ago
  33. ef4f7f0 Use relative import now that it is required. (Should this go into 2.5?) by Neal Norwitz · 18 years ago
  34. abdbeff Use relative imports in compiler package now that it is required. (Should this go into 2.5 or should we do compiler.XXX?) by Neal Norwitz · 18 years ago
  35. a0bc30f Remove another use of as as a keyword by Neal Norwitz · 18 years ago
  36. 914a818 Get doctest to pass. The problem was int/int -> float now. There by Neal Norwitz · 18 years ago
  37. f84c38a Damn another occurrence of using as as a keywordf by Neal Norwitz · 18 years ago
  38. e7086d4 INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). by Neal Norwitz · 18 years ago
  39. bd2835c as is a keyword now :-) by Neal Norwitz · 18 years ago
  40. 7096760 Get rid of xreadlines() (methods). by Neal Norwitz · 18 years ago
  41. 7c30724 More apply() cleanup by Neal Norwitz · 18 years ago
  42. d910855 Remove apply() by Neal Norwitz · 18 years ago
  43. ce96f69 Get rid of a bunch more raw_input references by Neal Norwitz · 18 years ago
  44. 9e2b966 Whoops, input *and* raw_input are slated for removal, and now both are gone. by Neal Norwitz · 18 years ago
  45. cd65e3f raw_input() -> input(). old input behavior is history (and test_builtin passes again). It was failing due to future division. by Neal Norwitz · 18 years ago
  46. ac3625f Remove sys.exc_type, sys.exc_value, sys.exc_traceback by Neal Norwitz · 18 years ago
  47. c6d210c Get rid of last vestiges of BINARY_DIVIDE. by Neal Norwitz · 18 years ago
  48. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  49. cb35b95 Teach the compiler module about augmented assignment to tuple subscripts by Nick Coghlan · 18 years ago
  50. d364a07 Added logThreads and logProcesses to allow conditional omission of logging this information by Vinay Sajip · 18 years ago
  51. eadee9a Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly by Nick Coghlan · 18 years ago
  52. a022789 Plug some refcount leaks when tests are run repeatedly. by Thomas Heller · 18 years ago
  53. abb903f Bug #1448490: Fix a bug that ISO-2022 codecs could not handle by Hye-Shik Chang · 18 years ago
  54. 6058aa4 Remove the slightly broken test_leaks.py. by Thomas Heller · 18 years ago
  55. 318af47 Plug the last 657 referenceleaks in test_bsddb3: a circular reference by Thomas Wouters · 18 years ago
  56. 88ca467 Whitespace normalization. by Tim Peters · 18 years ago
  57. 922dd7d When the new -w option (yay! great idea) reruns a by Tim Peters · 18 years ago
  58. 04824ce Add regrtest -w option. by Martin v. Löwis · 18 years ago
  59. 4196296 Update test data to 4.1; disable PRI #29 for now. by Martin v. Löwis · 18 years ago
  60. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 18 years ago
  61. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  62. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  63. 24cb053 Patch #1446372: quit and exit can now be called from the interactive by Georg Brandl · 18 years ago
  64. 51f77b5 Remove the magic to run an uninstalled ctypes version from a CVS sandbox. by Thomas Heller · 18 years ago
  65. d09def3 Bug #1442874: handle "<!>", the empty SGML comment by Georg Brandl · 18 years ago
  66. 57e881e Disable the testcase that crashes solaris. by Thomas Heller · 18 years ago
  67. e317d0e Replace the trivial ctypes test (did only an import) with the real test suite. by Thomas Heller · 18 years ago
  68. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 18 years ago
  69. e8d09e5 Whitespace normalization. by Tim Peters · 18 years ago
  70. d758d3d Remove .cvsignore and set svn:ignore for *.pyc *.pyo. by Hye-Shik Chang · 18 years ago
  71. 200af39 Trivial test for ctypes, more to come by Thomas Heller · 18 years ago
  72. babddfc Copy ctypes-0.9.9.4 Python modules from external into the trunk. by Thomas Heller · 18 years ago
  73. 533ff6f Patch #1434038: property() now uses the getter's docstring if there is by Georg Brandl · 18 years ago
  74. 26fd2e1 Fix pydoc.synopsis() so that it doesn't error out with an unreadable module. by Georg Brandl · 18 years ago
  75. df44ab7 _hotshot hotshot_profiler(): If write_header() returned by Tim Peters · 18 years ago
  76. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  77. ec73cd4 Typo fix by Andrew M. Kuchling · 18 years ago
  78. d3c38ff SF patch #1443865; gc.get_count() added and optional argument 'generation' by Barry Warsaw · 18 years ago
  79. 60da316 Thanks to Coverity, these were all reported by their Prevent tool. by Neal Norwitz · 18 years ago
  80. ca19943 If size is specified, try to read at least size characters. by Walter Dörwald · 18 years ago
  81. fbab90e Import bdist_msi by Martin v. Löwis · 18 years ago
  82. 5bab0f8 Backout the last hack and add in this new one. by Neal Norwitz · 18 years ago
  83. 83cbb24 Oops, urllib may or may not already be loaded. by Neal Norwitz · 18 years ago
  84. d8cea79 Fix spurious test failure of test_socket_ssl when run in this order: by Neal Norwitz · 18 years ago
  85. b62c433 Remove test for timing (already not built since commented out in setup.py). by Neal Norwitz · 18 years ago
  86. ad9afcf Actually this file should have svn:eol-style CRLF since it's specifically by Barry Warsaw · 18 years ago
  87. c32886d Set eol-style to native -- doesn't appear to be any reason by Tim Peters · 18 years ago
  88. 39e11fb Whitespace normalization. by Tim Peters · 18 years ago
  89. 67dfb6f I think the test_logging failure on Solaris is timing related. We don't by Neal Norwitz · 18 years ago
  90. 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 18 years ago
  91. d4e3035 Fix compiler breakage related to absolute imports by Neal Norwitz · 18 years ago
  92. eaed39f Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can by Neal Norwitz · 18 years ago
  93. fa0cf4f Add support for absolute/relative imports and if/else expressions: by Thomas Wouters · 18 years ago
  94. 4954b38 Fix mismatch opening and closing quotes on a string. by Brett Cannon · 18 years ago
  95. 5bde08d Fix failure of test_compiler.py when compiling test_contextlib.py. by Guido van Rossum · 18 years ago
  96. d9bfeac Reformat the exception message by going through a list. by Martin v. Löwis · 18 years ago
  97. 5ddfe41 Whitespace normalization. by Tim Peters · 18 years ago
  98. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  99. 15bfc3b Make failures in test cases print failing source file. by Martin v. Löwis · 18 years ago
  100. a9f0687 Fix a bug in nested() - if one of the sub-context-managers swallows the by Guido van Rossum · 18 years ago