1. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
  2. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  3. 15b16a3 Issue #4387: binascii now refuses to accept str as binary input. by Martin v. Löwis · 16 years ago
  4. 9262b84 Merged revisions 67246 via svnmerge from by Benjamin Peterson · 16 years ago
  5. c1de4cc fix test_descr by Benjamin Peterson · 16 years ago
  6. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  7. 6019208 remove some more references to __cmp__ #1717 by Benjamin Peterson · 16 years ago
  8. d1abd25 Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash level indicator that the default hash implementation has not been inherited by Nick Coghlan · 16 years ago
  9. e81f5ef Remove __metaclass__ remains. by Georg Brandl · 16 years ago
  10. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  11. a156e09 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from by Christian Heimes · 17 years ago
  12. 479a7e7 Manually merge r60521 from trunk. by Georg Brandl · 17 years ago
  13. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 17 years ago
  14. e7a15bb Merged revisions 60234-60244 via svnmerge from by Christian Heimes · 17 years ago
  15. bbffeb6 Merged revisions 60210-60233 via svnmerge from by Christian Heimes · 17 years ago
  16. 9a37159 Merged revisions 59595-59604 via svnmerge from by Christian Heimes · 17 years ago
  17. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  18. 45f9af3 Merged revisions 59193-59201 via svnmerge from by Christian Heimes · 17 years ago
  19. ff73795 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). by Christian Heimes · 17 years ago
  20. 4a22b5d Patch from Georg Brandl and me for #1493 Remove unbound method objects by Christian Heimes · 17 years ago
  21. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  22. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  23. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  24. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  25. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  26. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  27. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  28. 4a7fd90 Fix failure do to outlawing complex floordiv/mod. by Guido van Rossum · 17 years ago
  29. 25d0bd6 Delete failing test that was checking that a slot declaration with by Guido van Rossum · 17 years ago
  30. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  31. 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
  32. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  33. 5de48bd Simplify various spots where: str() is called on something by Walter Dörwald · 17 years ago
  34. 7815c5e Check unicode identifier directly instead of converting by Walter Dörwald · 17 years ago
  35. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  36. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  37. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  38. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  39. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  40. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  41. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  42. 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
  43. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
  44. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
  45. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  46. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  47. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  48. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  49. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  50. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  51. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  52. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  53. 01c77c6 Anna Ravenscroft identified many occurrences of "file" used to open a file by Alex Martelli · 18 years ago
  54. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  55. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  56. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  57. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  58. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  59. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
  60. 0725cf2 Remove tests for classic-class and mixed-classic-class/new-style behaviour. by Thomas Wouters · 19 years ago
  61. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 19 years ago
  62. 533ff6f Patch #1434038: property() now uses the getter's docstring if there is by Georg Brandl · 19 years ago
  63. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
  64. 6a29c32 Add test for classmethod ./. keyword args. by Georg Brandl · 19 years ago
  65. 1b27f86 Whitespace normalization. by Tim Peters · 19 years ago
  66. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 19 years ago
  67. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  68. c6686b7 Added proper reflection on instances of <type 'method-wrapper'>, e.g. by Armin Rigo · 19 years ago
  69. b180c06 Fix tests dependent on the exception raised by non-settable descriptors. by Barry Warsaw · 20 years ago
  70. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 20 years ago
  71. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  72. 2584781 Removing tests that fail because of changes in PyString_InternInPlace(), by Armin Rigo · 20 years ago
  73. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 21 years ago
  74. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  75. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  76. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  77. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  78. 2b6220d SF bug #762455: Python segfaults when sys.stdout is changed in getattr by Raymond Hettinger · 21 years ago
  79. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 21 years ago
  80. 98a379e Add test for bug #751998. by Neal Norwitz · 21 years ago
  81. bb1861a Remove debug code from weakref_segfault(). by Guido van Rossum · 21 years ago
  82. aabe0b3 Add testcase for SF 742911. by Guido van Rossum · 21 years ago
  83. a4541a3 - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 22 years ago
  84. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 22 years ago
  85. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 22 years ago
  86. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  87. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  88. f389c77 Use floor division (// and __[r]floordiv__ in right-dispatch test. by Guido van Rossum · 22 years ago
  89. f2715e0 Whitespace normalization. by Tim Peters · 22 years ago
  90. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
  91. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 22 years ago
  92. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 22 years ago
  93. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 22 years ago
  94. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 22 years ago
  95. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
  96. f631859 Add __getnewargs__ method to classes that need it. by Guido van Rossum · 22 years ago
  97. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 22 years ago
  98. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  99. 613f24f Add a test for a feature added in rev. 2.82 of typeobject.c: by Guido van Rossum · 22 years ago
  100. 2720b0d Add some print statements in verbose mode to announce that the newest by Guido van Rossum · 22 years ago