1. 426d995 Add development comments to setobject.c by Raymond Hettinger · 10 years ago
  2. bcaf599 Issue #20186: memoryobject.c: add function signatures. by Stefan Krah · 10 years ago
  3. 45e8e2f Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() by Victor Stinner · 10 years ago
  4. 470cf8d (Merge 3.4) Issue #21418: Fix a crash in the builtin function super() when by Victor Stinner · 10 years ago
  5. 1c6970f Issue #21418: Fix a crash in the builtin function super() when called without by Victor Stinner · 10 years ago
  6. bca9694 Issue #21442: Fix MSVC compiler warning introduced by issue21377. by Zachary Ware · 10 years ago
  7. 3080d92 Issue #21233: Fix _PyObject_Alloc() when compiled with WITH_VALGRIND defined by Victor Stinner · 10 years ago
  8. 4b74fba Issue 21101: Internal API for dict getitem and setitem where the hash value is known. by Raymond Hettinger · 10 years ago
  9. af8fc64 Issue #21233: Oops, Fix _PyObject_Alloc(): initialize nbytes before going to by Victor Stinner · 10 years ago
  10. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 10 years ago
  11. 161d695 Issue #21377: PyBytes_Concat() now tries to concatenate in-place when the first argument has a reference count of 1. by Antoine Pitrou · 10 years ago
  12. 027ce16 sprinkle some _PyId goodness around moduleobject.c by Benjamin Peterson · 10 years ago
  13. 1184e26 do not override errors from descriptors on modules by Benjamin Peterson · 10 years ago
  14. 7b9ff0e Issue8297: module attribute lookup failures now include module name in error message. by Ethan Furman · 10 years ago
  15. 715ef02 Fix a typo in the docstring of nb_index. by Zachary Ware · 10 years ago
  16. ea42b4c Fix a typo in the signature for object.__ge__ by Zachary Ware · 10 years ago
  17. 9996a7d Merge typo fix from 3.4 by Zachary Ware · 10 years ago
  18. 07b4c5e Merge typo fix from 3.4 by Zachary Ware · 10 years ago
  19. 0c346d8 Issue #21193: Make (e.g.,) pow(2, -3, 5) raise ValueError rather than TypeError. Patch by Josh Rosenberg. by Mark Dickinson · 10 years ago
  20. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  21. 4dd2525 Issue #21118: PyLong_AS_LONG() result type is long by Victor Stinner · 10 years ago
  22. 1365de7 fix reference leaks in the translate fast path (closes #21175) by Benjamin Peterson · 10 years ago
  23. 872b291 Issue #21118: Optimize also str.translate() for ASCII => ASCII deletion by Victor Stinner · 10 years ago
  24. 4ff33af Issue #21118: Add unit test for invalid character replacement (code point higher than U+10ffff) by Victor Stinner · 10 years ago
  25. 89a76ab Issue #21118: Optimize str.translate() for ASCII => ASCII translation by Victor Stinner · 10 years ago
  26. 8a4422e Issue #21118: Remove unused variable by Victor Stinner · 10 years ago
  27. 69598d4 Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format by Victor Stinner · 10 years ago
  28. 1194ea0 Issue #21118: Use _PyUnicodeWriter API in str.translate() to simplify and by Victor Stinner · 10 years ago
  29. d129eeb Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format by Victor Stinner · 10 years ago
  30. d818fc9 merge 3.4 (#21134) by Benjamin Peterson · 10 years ago
  31. 9b09ba1 bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134) by Benjamin Peterson · 10 years ago
  32. 3fec24e Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. by Antoine Pitrou · 10 years ago
  33. 04d17d3 Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. by Antoine Pitrou · 10 years ago
  34. 00ced0f merge 3.4 by Benjamin Peterson · 10 years ago
  35. d455ce4 merge 3.3 by Benjamin Peterson · 10 years ago
  36. 0ad6098 merge 3.2 by Benjamin Peterson · 10 years ago
  37. 23cf403 fix expandtabs overflow detection to be consistent and not rely on signed overflow by Benjamin Peterson · 10 years ago
  38. 9ab7480 Issue19995: more informative error message; spelling corrections; use operator.mod instead of __mod__ by Ethan Furman · 10 years ago
  39. 38d872e Issue19995: passing a non-int to %o, %c, %x, or %X now raises an exception by Ethan Furman · 10 years ago
  40. 7d00cc1 Issue #20574: Implement incremental decoder for cp65001 code by Victor Stinner · 11 years ago
  41. df81379 correct the fix for #20637; allow slot descriptor inheritance to take place before creating cached keys by Benjamin Peterson · 11 years ago
  42. af9049e merge 3.3 by Benjamin Peterson · 11 years ago
  43. 4a42cd4 avoid referencing past the bounds of an array by Benjamin Peterson · 11 years ago
  44. 1aca78d merge 3.3 by Benjamin Peterson · 11 years ago
  45. ef87f8c avoid referencing out-of-bounds memory by Benjamin Peterson · 11 years ago
  46. 45c9dce fix c89 declaration order by Benjamin Peterson · 11 years ago
  47. dfa8228 merge 3.3 by Benjamin Peterson · 11 years ago
  48. 041c38a don't do pointer arithmetic with signed numbers by Benjamin Peterson · 11 years ago
  49. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  50. 4ca688e Fix pickling of rangeiter. rangeiter_setstate would not allow setting it by Kristján Valur Jónsson · 11 years ago
  51. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  52. 25ea45d Merge with 3.3 by Kristján Valur Jónsson · 11 years ago
  53. 056e265 Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ by Yury Selivanov · 11 years ago
  54. 94ee389 Issue #19619: Blacklist non-text codecs in method API by Serhiy Storchaka · 11 years ago
  55. f0b5a7c Issue #20637: Key-sharing now also works for instance dictionaries of subclasses. Patch by Peter Ingebretson. by Antoine Pitrou · 11 years ago
  56. e686c5c look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) by Benjamin Peterson · 11 years ago
  57. 4267869 merge 3.3 (#20507) by Benjamin Peterson · 11 years ago
  58. 9743b2c give non-iterable TypeError a message (closes #20507) by Benjamin Peterson · 11 years ago
  59. 226c571 Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. by Serhiy Storchaka · 11 years ago
  60. 1f9d11b Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. by Serhiy Storchaka · 11 years ago
  61. 87a5c51 Issue #19255: The builtins module is restored to initial value before by Serhiy Storchaka · 11 years ago
  62. 8f9f0f1 Issue #20517: Removed unnecessary new (short-lived) functions from PyErr. by Larry Hastings · 11 years ago
  63. 69a2547 Issue #20530: The signatures for slot builtins have been updated by Larry Hastings · 11 years ago
  64. b082731 Issue #20517: Functions in the os module that accept two filenames by Larry Hastings · 11 years ago
  65. dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  66. 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  67. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
  68. d979e43 Close #20500: Don't trigger PyObject_Str assertion at shutdown by Nick Coghlan · 11 years ago
  69. 6cbf151 Issue #20538: UTF-7 incremental decoder produced inconsistant string when by Serhiy Storchaka · 11 years ago
  70. 016a3f3 Issue #20538: UTF-7 incremental decoder produced inconsistant string when by Serhiy Storchaka · 11 years ago
  71. 1ea4e41 Issue #17162: Fix compilation, replace non-breaking space with an ASCII space by Victor Stinner · 11 years ago
  72. ca7b046 Issue #17162: Add PyType_GetSlot. by Martin v. Löwis · 11 years ago
  73. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  74. 77b286b Close #20105: set __traceback__ when chaining exceptions in C by Nick Coghlan · 11 years ago
  75. c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 11 years ago
  76. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  77. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  78. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  79. e02de8c Fix minor bug in dict.__contains__ docstring. by Meador Inge · 11 years ago
  80. 6ba5665 Fix typo in comment. by Eric V. Smith · 11 years ago
  81. a70805e Issue19995: fixed typo; switched from test.support.check_warnings to assertWarns by Ethan Furman · 11 years ago
  82. f9bba9c Issue19995: issue deprecation warning for non-integer values to %c, %o, %x, %X by Ethan Furman · 11 years ago
  83. 61272b7 Issue #19273: The marker comments Argument Clinic uses have been changed by Larry Hastings · 11 years ago
  84. 74fc8c4 Add comments to frozenset_hash(). by Raymond Hettinger · 11 years ago
  85. df3ed24 Issue19995: %o, %x, %X now only accept ints by Ethan Furman · 11 years ago
  86. 3079328 Reverted changeset b72c5573c5e7 (issue #15027). by Serhiy Storchaka · 11 years ago
  87. 583a939 Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster. by Serhiy Storchaka · 11 years ago
  88. fa4e68d Remove deadcode (HASH macro is no more defined) by Victor Stinner · 11 years ago
  89. 92a419e Remove now unused variables by Victor Stinner · 11 years ago
  90. f3b46b4 unicode_char() uses get_latin1_char() to get latin1 singleton characters by Victor Stinner · 11 years ago
  91. 985a82a add unicode_char() in unicodeobject.c to factorize code by Victor Stinner · 11 years ago
  92. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  93. 4ac9c00 Better assertion in PyObject_Call() to detect functions returning a result with by Victor Stinner · 11 years ago
  94. e259f13 Minor code clean-up. Keep the C-API all in one section. by Raymond Hettinger · 11 years ago
  95. c836a28 Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e. by Serhiy Storchaka · 11 years ago
  96. 507ac3a (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if by Victor Stinner · 11 years ago
  97. c9362cf Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" by Victor Stinner · 11 years ago
  98. 1310510 Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 11 years ago
  99. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  100. c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago