1. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 18 years ago
  2. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
  3. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 18 years ago
  4. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
  5. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
  6. 42dae6a Make readonly members defined in C throw an AttributeError on modification. This brings them into sync with Python-level attributes. Fixes bug #1687163. by Collin Winter · 18 years ago
  7. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
  8. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
  9. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 19 years ago
  10. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 19 years ago
  11. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 19 years ago
  12. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 19 years ago
  13. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 19 years ago
  14. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 19 years ago
  15. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 19 years ago
  16. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 19 years ago
  17. 01c77c6 Anna Ravenscroft identified many occurrences of "file" used to open a file by Alex Martelli · 19 years ago
  18. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 19 years ago
  19. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 19 years ago
  20. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 19 years ago
  21. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 19 years ago
  22. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 19 years ago
  23. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
  24. 0725cf2 Remove tests for classic-class and mixed-classic-class/new-style behaviour. by Thomas Wouters · 19 years ago
  25. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 19 years ago
  26. 533ff6f Patch #1434038: property() now uses the getter's docstring if there is by Georg Brandl · 19 years ago
  27. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
  28. 6a29c32 Add test for classmethod ./. keyword args. by Georg Brandl · 19 years ago
  29. 1b27f86 Whitespace normalization. by Tim Peters · 20 years ago
  30. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 20 years ago
  31. fd163f9 SF patch #1390657: by Armin Rigo · 20 years ago
  32. c6686b7 Added proper reflection on instances of <type 'method-wrapper'>, e.g. by Armin Rigo · 20 years ago
  33. b180c06 Fix tests dependent on the exception raised by non-settable descriptors. by Barry Warsaw · 20 years ago
  34. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 20 years ago
  35. 5a8a037 Use descriptors. by Guido van Rossum · 21 years ago
  36. 2584781 Removing tests that fail because of changes in PyString_InternInPlace(), by Armin Rigo · 21 years ago
  37. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 21 years ago
  38. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 22 years ago
  39. 58eb11c Whitespace normalization. by Tim Peters · 22 years ago
  40. b2c7de4 Fix for by Michael W. Hudson · 22 years ago
  41. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 22 years ago
  42. 2b6220d SF bug #762455: Python segfaults when sys.stdout is changed in getattr by Raymond Hettinger · 22 years ago
  43. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 22 years ago
  44. 98a379e Add test for bug #751998. by Neal Norwitz · 22 years ago
  45. bb1861a Remove debug code from weakref_segfault(). by Guido van Rossum · 22 years ago
  46. aabe0b3 Add testcase for SF 742911. by Guido van Rossum · 22 years ago
  47. a4541a3 - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 22 years ago
  48. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 22 years ago
  49. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 22 years ago
  50. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  51. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  52. f389c77 Use floor division (// and __[r]floordiv__ in right-dispatch test. by Guido van Rossum · 22 years ago
  53. f2715e0 Whitespace normalization. by Tim Peters · 22 years ago
  54. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 23 years ago
  55. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 23 years ago
  56. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 23 years ago
  57. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 23 years ago
  58. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 23 years ago
  59. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 23 years ago
  60. f631859 Add __getnewargs__ method to classes that need it. by Guido van Rossum · 23 years ago
  61. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 23 years ago
  62. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 23 years ago
  63. 613f24f Add a test for a feature added in rev. 2.82 of typeobject.c: by Guido van Rossum · 23 years ago
  64. 2720b0d Add some print statements in verbose mode to announce that the newest by Guido van Rossum · 23 years ago
  65. 4f37418 Disable the rexec test now that rexec is out of grace. by Guido van Rossum · 23 years ago
  66. 6578dc9 Whitespace normalization. by Tim Peters · 23 years ago
  67. 78ce6b1 Add test for SF #658106. Will backport. by Neal Norwitz · 23 years ago
  68. 3bbc0ee Tighten the tests for assignment to __bases__: disallow empty tuple. by Guido van Rossum · 23 years ago
  69. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 23 years ago
  70. ade8c8b Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 23 years ago
  71. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 23 years ago
  72. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 23 years ago
  73. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 23 years ago
  74. a01fa26 The MRO conflict error message depends on dictionary hash order. by Guido van Rossum · 23 years ago
  75. 98bbc49 This is my patch: by Michael W. Hudson · 23 years ago
  76. d32047f A tweaked version of Jeremy's patch #642489, to produce better error by Guido van Rossum · 23 years ago
  77. ca2953e Remove duplicate test by Neal Norwitz · 23 years ago
  78. a797d81 Patch #642500 with slight modifications: allow keyword arguments in by Just van Rossum · 23 years ago
  79. 9a81892 Fix or disable some tests that were affected by the new C3 MRO by Guido van Rossum · 23 years ago
  80. 673cd82 Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman by Neal Norwitz · 23 years ago
  81. 6e5680f For some reason (probably cut and paste), __ipow__ for new-style by Guido van Rossum · 23 years ago
  82. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 23 years ago
  83. 8b056da Add tests for including __dict__ and/or __weakref__ in __slots__. by Guido van Rossum · 23 years ago
  84. f9dd0f1 Add test for SF bug # 575229, multiple inheritance w/ slots dumps core by Neal Norwitz · 23 years ago
  85. 40af889 Disallow class assignment completely unless both old and new are heap by Guido van Rossum · 23 years ago
  86. 0f5f0b8 Test for Neil's fix to correctly invoke __rmul__. by Guido van Rossum · 23 years ago
  87. 2d70246 Add testcase for SF bug 574207 (chained __slots__ dealloc segfault). by Guido van Rossum · 23 years ago
  88. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 23 years ago
  89. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  90. 72351b9 subtype_resurrection(): Removed unused import. by Tim Peters · 23 years ago
  91. 14cb1e1 subtype_resurrection(): The test suite with -l properly reported the by Tim Peters · 23 years ago
  92. 45228ca Repaired optimistic comment in new test. by Tim Peters · 23 years ago
  93. 2484aae Added a test that provokes the hypothesized (in my last checkin comment) by Tim Peters · 23 years ago
  94. ab5dae3 Fix SF bug 572567: Memory leak in object comparison. by Raymond Hettinger · 23 years ago
  95. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 23 years ago
  96. a96b0df Patch from SF bug 570483 (Tim Northover). by Guido van Rossum · 23 years ago
  97. e7f3e24 Test for the bug in recurse_down_subclasses() that I just fixed. by Guido van Rossum · 23 years ago
  98. 09638c1 Hopefully this addresses the remaining issues of SF bugs 459235 and by Guido van Rossum · 23 years ago
  99. a48cb8f Fix from SF patch 565085: copy._reduction doesn't __setstate__. by Guido van Rossum · 23 years ago
  100. 9923ffe Address SF bug 519621: slots weren't traversed by GC. by Guido van Rossum · 23 years ago