1. b7a2c17 [2.7] bpo-32137: The repr of deeply nested dict now raises a RuntimeError (GH-4570) (#5493) by Serhiy Storchaka · 7 years ago
  2. b44c452 Issue #27125: Fix various errors like “will [be] inherited” by Martin Panter · 8 years ago
  3. df9460f Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle. by Alexandre Vassalotti · 11 years ago
  4. a293428 Issue #6477: Added pickling support for singletons and their types. by Alexandre Vassalotti · 11 years ago
  5. 6b3f8d3 ensure the attribute name string is initalized before using it (closes #16839) by Benjamin Peterson · 12 years ago
  6. 6da3ed6 initialize more global type objects (closes #16369) by Benjamin Peterson · 12 years ago
  7. 58098a7 Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  8. ed11a5d Issue #8767: Restore building with --disable-unicode. by Martin v. Löwis · 12 years ago
  9. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 13 years ago
  10. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 13 years ago
  11. 7f5cd45 must clear an AttributeError if it is set by Benjamin Peterson · 13 years ago
  12. fd89af5 handle old-style instances by Benjamin Peterson · 13 years ago
  13. 8de87a6 correctly lookup __dir__ by Benjamin Peterson · 13 years ago
  14. a408350 Merged revisions 84344 via svnmerge from by Antoine Pitrou · 14 years ago
  15. c7c96a9 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  16. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  17. 56506a6 Use a better NaN test in _Py_HashDouble as well. by Mark Dickinson · 14 years ago
  18. 5e0c274 Use a more robust infinity check in _Py_HashDouble. by Mark Dickinson · 14 years ago
  19. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  20. f492c36 Merged revisions 74457 via svnmerge from by Benjamin Peterson · 15 years ago
  21. 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 15 years ago
  22. 585ad8a Merged revisions 69846 via svnmerge from by Jesus Cea · 15 years ago
  23. d11f7fc Uninitialized file type would lead to __exit__ lookup failure when site.py by Antoine Pitrou · 15 years ago
  24. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 15 years ago
  25. 3a9930d this is now a bound method by Benjamin Peterson · 15 years ago
  26. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 15 years ago
  27. c485361 Merged revisions 71734,71738-71739 via svnmerge from by Benjamin Peterson · 15 years ago
  28. 8cfa8e6 make errors consistent by Benjamin Peterson · 15 years ago
  29. 308c6ba initialize weakref some weakref types by Benjamin Peterson · 15 years ago
  30. 01c6e6f many more types to initialize (I had to expose some of them) by Benjamin Peterson · 15 years ago
  31. 4585ca9 Merged revisions 71722,71725 via svnmerge from by Benjamin Peterson · 15 years ago
  32. 5ce7375 initalize -> initialize by Benjamin Peterson · 15 years ago
  33. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 15 years ago
  34. e9b9121 Merged revisions 71058,71149-71150,71212,71214-71216,71222,71225,71234,71237-71238,71240-71241,71243,71249,71251 via svnmerge from by Georg Brandl · 15 years ago
  35. d3eaa74 #5615: make it possible to configure --without-threads again. by Georg Brandl · 15 years ago
  36. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  37. 9e8a250 Fix compiler warning (gcc) by Antoine Pitrou · 16 years ago
  38. 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 16 years ago
  39. dd0989e Merged revisions 69433,69436 via svnmerge from by Mark Dickinson · 16 years ago
  40. 10fe877 Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bit by Mark Dickinson · 16 years ago
  41. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 16 years ago
  42. b90304a Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. by Martin v. Löwis · 16 years ago
  43. d465640 Merged revisions 68051 via svnmerge from by Nick Coghlan · 16 years ago
  44. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 16 years ago
  45. c6e80eb Merged revisions 67654,67676-67677,67681,67692,67725,67746,67748,67761,67784-67785,67787-67788,67802,67832,67848-67849,67859,67862-67864,67880,67882,67885,67889-67892,67895 via svnmerge from by Benjamin Peterson · 16 years ago
  46. 3538a31 #3632: the "pyo" macro from gdbinit can now run when the GIL is released. by Amaury Forgeot d'Arc · 16 years ago
  47. 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
  48. 524b777 Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing the instance dictionary when looking up __unicode__ on new-style classes by Nick Coghlan · 16 years ago
  49. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  50. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  51. 3497f94 First step of the C API rename: by Christian Heimes · 16 years ago
  52. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  53. 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 · 17 years ago
  54. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  55. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 17 years ago
  56. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 17 years ago
  57. 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 17 years ago
  58. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 17 years ago
  59. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 17 years ago
  60. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 17 years ago
  61. 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
  62. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  63. 0b14f24 tuple.__repr__ did not consider a reference loop as it is not possible from by Brett Cannon · 17 years ago
  64. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
  65. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  66. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  67. 26ca925 Remove warning: funcion declaration isn't a prototype by Jeremy Hylton · 18 years ago
  68. 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
  69. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  70. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  71. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 18 years ago
  72. 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 18 years ago
  73. 2060d1b Comment typo fix by Andrew M. Kuchling · 18 years ago
  74. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 18 years ago
  75. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  76. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  77. cbd6f18 _Py_PrintReferenceAddresses,_Py_PrintReferences: by Tim Peters · 18 years ago
  78. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  79. 262c00a Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 19 years ago
  80. 8af92d1 Heh -- used the right format for a refcount, but forgot to stop truncating it. by Tim Peters · 19 years ago
  81. 4d073bb _Py_NegativeRefcount(): print the full value of ob_refcnt. by Tim Peters · 19 years ago
  82. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 19 years ago
  83. 3daf758 Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact by Georg Brandl · 19 years ago
  84. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  85. 84632ee Oops, forgot to include this in the last checkin. by Neal Norwitz · 19 years ago
  86. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
  87. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  88. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  89. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  90. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  91. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  92. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  93. a5ca2e7 Remove 'extern' declaration for _Py_SwappedOp. by Brett Cannon · 20 years ago
  94. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  95. 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 20 years ago
  96. 2a7dede SF bug #1004669: Type returned from .keys() is not checked by Raymond Hettinger · 20 years ago
  97. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  98. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  99. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  100. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 20 years ago