1. 712ee92 generate py3k warnings on __getslice__, __delslice__, and __setslice__ by Benjamin Peterson · 16 years ago
  2. 48361f5 Issue 2235: Py3k warnings are now emitted for classes that will no longer inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings. by Nick Coghlan · 16 years ago
  3. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
  4. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 16 years ago
  5. e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 16 years ago
  6. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  7. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  8. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  9. f18a707 Revert #2990 patch; it's not necessary as Armin showed. by Georg Brandl · 16 years ago
  10. 5ec330c #2990: prevent inconsistent state while updating method cache. by Georg Brandl · 16 years ago
  11. 74a1dea #2989: add PyType_Modified(). by Georg Brandl · 16 years ago
  12. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  13. dffbf5f Revert copy_reg -> copyreg rename. by Georg Brandl · 16 years ago
  14. ea0b22a Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6. by Alexandre Vassalotti · 16 years ago
  15. 9510e4a Added module stub for copy_reg renaming in 3.0. by Alexandre Vassalotti · 16 years ago
  16. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  17. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 16 years ago
  18. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 16 years ago
  19. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 16 years ago
  20. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 16 years ago
  21. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 16 years ago
  22. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  23. e7bb918 Whitespace cleanup by Neal Norwitz · 17 years ago
  24. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 17 years ago
  25. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 17 years ago
  26. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 17 years ago
  27. dfe5dc8 Make Python compile with --disable-unicode. by Georg Brandl · 17 years ago
  28. 30b7804 Fix refleak introduced in r59576. by Georg Brandl · 17 years ago
  29. 0b7b6fd Patch #1549 by Thomas Herve. by Guido van Rossum · 17 years ago
  30. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  31. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  32. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  33. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  34. a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 17 years ago
  35. 9790a27 Fix for #1303614 and #1174712: by Armin Rigo · 17 years ago
  36. 796fc99 Fix a usage of the dangerous pattern decref - modify field - incref. by Armin Rigo · 17 years ago
  37. c0ba52d Revert r53997 as per by Armin Rigo · 17 years ago
  38. cbd9ee6 When __slots__ are set to a unicode string, make it work the same as by Neal Norwitz · 17 years ago
  39. f102e24 Add a type.__init__() method that enforces the same signature as by Guido van Rossum · 17 years ago
  40. 143b564 - Bug #1683368: The object.__init__() and object.__new__() methods are by Guido van Rossum · 17 years ago
  41. 6f2d09c Patch #1623563: allow __class__ assignment for classes with __slots__. by Žiga Seilnacht · 17 years ago
  42. 20f43d3 Patch #1462488: prevent a segfault in object_reduce_ex() by splitting by Žiga Seilnacht · 17 years ago
  43. 71436f0 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 17 years ago
  44. 8903208 Patch #1675981: remove unreachable code from type.__new__() method. by Žiga Seilnacht · 17 years ago
  45. fa95569 Add checking for a number of metaclass error conditions. by Jeremy Hylton · 17 years ago
  46. 2d1f5c9 whitespace normalization by Jeremy Hylton · 17 years ago
  47. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 17 years ago
  48. fd96326 Bug #1653736: Properly discard third argument to slot_nb_inplace_power. by Martin v. Löwis · 18 years ago
  49. f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 18 years ago
  50. b3f3755 Fix wording in comment by Andrew M. Kuchling · 18 years ago
  51. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  52. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 18 years ago
  53. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  54. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  55. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 18 years ago
  56. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  57. 7a36f5f SF patch #1534048 (bug #1531003): fix typo in error message by Fred Drake · 18 years ago
  58. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  59. b114984 Fix refleak by Neal Norwitz · 18 years ago
  60. 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 18 years ago
  61. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 18 years ago
  62. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  63. 4e90810 Fix variable/format-char discrepancy in new-style class __getitem__, by Thomas Wouters · 18 years ago
  64. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 18 years ago
  65. ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 18 years ago
  66. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  67. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  68. ee36d65 Correct casts to char*. by Martin v. Löwis · 18 years ago
  69. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  70. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  71. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  72. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  73. 692cdbc Fix three nits found by Coverity, adding null checks and comments. by Guido van Rossum · 18 years ago
  74. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  75. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  76. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  77. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  78. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  79. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 18 years ago
  80. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  81. 50bf51a Fix ref/memory leak introduced in rev 41845. by Neal Norwitz · 19 years ago
  82. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 19 years ago
  83. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  84. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  85. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  86. ec862b9 (pedronis, arigo) by Armin Rigo · 19 years ago
  87. 630db60 - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 19 years ago
  88. 5661699 fix object.__divmod__.__doc__ by Anthony Baxter · 19 years ago
  89. 7726dc0 Fixed a quite misleading comment: a "not" should not have been there. by Armin Rigo · 19 years ago
  90. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 19 years ago
  91. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  92. bf60875 Patch #980082: Missing INCREF in PyType_Ready. by Martin v. Löwis · 20 years ago
  93. 3f3b668 Repair the same thinko in two places about handling of _Py_RefTotal in by Michael W. Hudson · 20 years ago
  94. 8d726ee Cosmetic spacing fix. by Raymond Hettinger · 20 years ago
  95. d56cbe5 Fix leak found by Eric Huss. by Raymond Hettinger · 20 years ago
  96. 3ecdb25 Fix for bug #966623 - classes created with type() in an exec(, {}) don't by Anthony Baxter · 20 years ago
  97. ff365c9 Get rid of gcc warning. by Hye-Shik Chang · 20 years ago
  98. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  99. 8a1a594 Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocol by Jim Fulton · 21 years ago
  100. 6a8bbdb Improve argument checking speed. by Raymond Hettinger · 21 years ago