1. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  2. 9a6e62b Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop' by Thomas Wouters · 18 years ago
  3. d204a71 Make bytesobject raise ValueError instead of TypeError again (thanks, Nick) by Thomas Wouters · 18 years ago
  4. 89da5d7 Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. by Guido van Rossum · 18 years ago
  5. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  6. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  7. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  8. 7921299 use isinstance instead of type. Use bool instead of int for flag. by Neal Norwitz · 18 years ago
  9. cef3a1c Another has_key reference bites the dust. by Guido van Rossum · 18 years ago
  10. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  11. d2dbecb repr() of a long int no longer produces a trailing 'L'. by Guido van Rossum · 18 years ago
  12. f431278 test_bsddb runs fine on darwin. by Guido van Rossum · 18 years ago
  13. 49d6b07 Make the it_index field in the str/unicode iterators Py_ssize_t's. by Guido van Rossum · 18 years ago
  14. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  15. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  16. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  17. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  18. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  19. 60254fe While testing absolute and relative imports, remember that absolute imports by Thomas Wouters · 18 years ago
  20. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  21. 08e8b7a Comment out debug print. by Guido van Rossum · 18 years ago
  22. 65810fe SF patch 1495675: Remove types.InstanceType and new.instance (Collin Winter) by Guido van Rossum · 18 years ago
  23. 2018831 Adding bytes.join() -- a class methods that concatenates an iterable of bytes. by Guido van Rossum · 18 years ago
  24. cab1097 __coerce__ is gone, there's nothing to test. by Neal Norwitz · 19 years ago
  25. 13e5721 Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes. by Guido van Rossum · 19 years ago
  26. d624f18 Added much functionality to the bytes type. by Guido van Rossum · 19 years ago
  27. e06b6b8 Fix a leak and a buglet discovered by Thomas. by Guido van Rossum · 19 years ago
  28. 5f6f27d Fix test_main function so test_bytes can be run by regrtest.py. by Thomas Wouters · 19 years ago
  29. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 19 years ago
  30. d603f64 Delete test_coercion.py. Coercion is dead, so this test is useless. by Guido van Rossum · 19 years ago
  31. d807328 Fix newly merged test for p3ykness. by Thomas Wouters · 19 years ago
  32. dcc6d32 Fix merge glitch. by Thomas Wouters · 19 years ago
  33. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
  34. 9ada3d6 Merge trunk up to 43069, putting re.py back and hopefully making the branch by Thomas Wouters · 19 years ago
  35. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 19 years ago
  36. d858f70 Fix the problems in this test. Boy this is a painful thing to debug -- by Guido van Rossum · 19 years ago
  37. 303de6a Fix (and add test for) missing check for BaseException subclasses in the C API. by Thomas Wouters · 19 years ago
  38. a48a3b4 Fix test failures for repr.py. by Guido van Rossum · 19 years ago
  39. 08a1a9f Use explicit relative import for an, ehm, relative import. by Thomas Wouters · 19 years ago
  40. 7ea7d90 Fix the expected output file; new classes just behave differently... by Guido van Rossum · 19 years ago
  41. 07519f8 Fix xrange tests now that xrange() (like many other places) no longer by Thomas Wouters · 19 years ago
  42. 4cdada9 Make test_class work (but still fail) even though class.__dict__ is now a by Thomas Wouters · 19 years ago
  43. 1034dad Adjust test_enumerate to accomodate for iter() blowing up sooner than by Thomas Wouters · 19 years ago
  44. c947123 Fix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily) by Thomas Wouters · 19 years ago
  45. 725af87 - Remove tests for classic class behaviour by Thomas Wouters · 19 years ago
  46. 1ae9afa Fix test_bisect in the same way as test_itertools: iter() blows up a lot by Thomas Wouters · 19 years ago
  47. 3472903 Fix the superficial augmented-assignment tests to deal with true division. by Thomas Wouters · 19 years ago
  48. 8690c4e Fix tests that were trying to make iteration blow up, on broken iterators. by Thomas Wouters · 19 years ago
  49. 0725cf2 Remove tests for classic-class and mixed-classic-class/new-style behaviour. by Thomas Wouters · 19 years ago
  50. 28bc768 - Fix doctest results to account for classes being new-style, and thus by Thomas Wouters · 19 years ago
  51. c6fe059 Use absolute import. (Should this go into 2.5?) by Neal Norwitz · 19 years ago
  52. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 19 years ago
  53. ed483ba String exceptions are gone and so are classic classes. by Neal Norwitz · 19 years ago
  54. 1e32b69 Must inherit from Exception now. by Neal Norwitz · 19 years ago
  55. 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 · 19 years ago
  56. 16d6510 Use relative import now that it is required. (Should this go into 2.5?) by Neal Norwitz · 19 years ago
  57. 2a0c780 Use relative import now that it is required. (Should this go into 2.5?) by Neal Norwitz · 19 years ago
  58. 0fb4376 Must inherit from Exception now. by Neal Norwitz · 19 years ago
  59. ef4f7f0 Use relative import now that it is required. (Should this go into 2.5?) by Neal Norwitz · 19 years ago
  60. 914a818 Get doctest to pass. The problem was int/int -> float now. There by Neal Norwitz · 19 years ago
  61. bd2835c as is a keyword now :-) by Neal Norwitz · 19 years ago
  62. 7096760 Get rid of xreadlines() (methods). by Neal Norwitz · 19 years ago
  63. d910855 Remove apply() by Neal Norwitz · 19 years ago
  64. ce96f69 Get rid of a bunch more raw_input references by Neal Norwitz · 19 years ago
  65. 9e2b966 Whoops, input *and* raw_input are slated for removal, and now both are gone. by Neal Norwitz · 19 years ago
  66. cd65e3f raw_input() -> input(). old input behavior is history (and test_builtin passes again). It was failing due to future division. by Neal Norwitz · 19 years ago
  67. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 19 years ago
  68. eadee9a Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly by Nick Coghlan · 19 years ago
  69. abb903f Bug #1448490: Fix a bug that ISO-2022 codecs could not handle by Hye-Shik Chang · 19 years ago
  70. 88ca467 Whitespace normalization. by Tim Peters · 19 years ago
  71. 922dd7d When the new -w option (yay! great idea) reruns a by Tim Peters · 19 years ago
  72. 04824ce Add regrtest -w option. by Martin v. Löwis · 19 years ago
  73. 4196296 Update test data to 4.1; disable PRI #29 for now. by Martin v. Löwis · 19 years ago
  74. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
  75. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 19 years ago
  76. d09def3 Bug #1442874: handle "<!>", the empty SGML comment by Georg Brandl · 19 years ago
  77. e317d0e Replace the trivial ctypes test (did only an import) with the real test suite. by Thomas Heller · 19 years ago
  78. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 19 years ago
  79. e8d09e5 Whitespace normalization. by Tim Peters · 19 years ago
  80. 200af39 Trivial test for ctypes, more to come by Thomas Heller · 19 years ago
  81. 533ff6f Patch #1434038: property() now uses the getter's docstring if there is by Georg Brandl · 19 years ago
  82. df44ab7 _hotshot hotshot_profiler(): If write_header() returned by Tim Peters · 19 years ago
  83. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  84. d3c38ff SF patch #1443865; gc.get_count() added and optional argument 'generation' by Barry Warsaw · 19 years ago
  85. 60da316 Thanks to Coverity, these were all reported by their Prevent tool. by Neal Norwitz · 19 years ago
  86. ca19943 If size is specified, try to read at least size characters. by Walter Dörwald · 19 years ago
  87. 5bab0f8 Backout the last hack and add in this new one. by Neal Norwitz · 19 years ago
  88. 83cbb24 Oops, urllib may or may not already be loaded. by Neal Norwitz · 19 years ago
  89. d8cea79 Fix spurious test failure of test_socket_ssl when run in this order: by Neal Norwitz · 19 years ago
  90. b62c433 Remove test for timing (already not built since commented out in setup.py). by Neal Norwitz · 19 years ago
  91. 67dfb6f I think the test_logging failure on Solaris is timing related. We don't by Neal Norwitz · 19 years ago
  92. 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 19 years ago
  93. 4954b38 Fix mismatch opening and closing quotes on a string. by Brett Cannon · 19 years ago
  94. 5bde08d Fix failure of test_compiler.py when compiling test_contextlib.py. by Guido van Rossum · 19 years ago
  95. d9bfeac Reformat the exception message by going through a list. by Martin v. Löwis · 19 years ago
  96. 5ddfe41 Whitespace normalization. by Tim Peters · 19 years ago
  97. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 19 years ago
  98. 15bfc3b Make failures in test cases print failing source file. by Martin v. Löwis · 19 years ago
  99. a9f0687 Fix a bug in nested() - if one of the sub-context-managers swallows the by Guido van Rossum · 19 years ago
  100. 1a57296 Set svn:eol-style to native. by Tim Peters · 19 years ago