1. 759920c Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j). by Antoine Pitrou · 10 years ago
  2. 9086f92 Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j). by Antoine Pitrou · 10 years ago
  3. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
  4. 72b8a80 Closes #22540: speed up PyObject_IsInstance and PyObject_IsSubclass in the common case that the second argument has metaclass "type". by Georg Brandl · 10 years ago
  5. 8486f9b Fix "warning: comparison between signed and unsigned integer expressions" by Gregory P. Smith · 10 years ago
  6. fd97a6f merge 3.4 (#22520) by Benjamin Peterson · 10 years ago
  7. 43030ee merge 3.3 (#22520) by Benjamin Peterson · 10 years ago
  8. 736b801 prevent overflow in unicode_repr (closes #22520) by Benjamin Peterson · 10 years ago
  9. cdfb769 merge 3.4 by Benjamin Peterson · 10 years ago
  10. c2cfa8d merge 3.3 by Benjamin Peterson · 10 years ago
  11. d48bc94 these variables ought to be Py_ssize_t by Benjamin Peterson · 10 years ago
  12. 36a24f3 merge 3.4 (#22519) by Benjamin Peterson · 10 years ago
  13. 18f836f merge 3.3 (closes #22519) by Benjamin Peterson · 10 years ago
  14. 42ff105 fix overflow checking in PyBytes_Repr (closes #22519) by Benjamin Peterson · 10 years ago
  15. 10e4b25 merge 3.4 (closes #22518) by Benjamin Peterson · 10 years ago
  16. 2b76ce6 merge 3.3 (closes #22518) by Benjamin Peterson · 10 years ago
  17. a1c1be4 cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_encode_ucs1 (closes #22518) by Benjamin Peterson · 10 years ago
  18. 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
  19. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  20. 8f4ec8d Issue #22290: PyObject_Call() now fails with an assertion error when called by Victor Stinner · 10 years ago
  21. 48ad7c0 use __qualname__ to compute bound method repr (closes #21389) by Benjamin Peterson · 10 years ago
  22. 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
  23. 88d146b Optimize PyBytes_FromObject(): only overallocate when size=0 to not get the by Victor Stinner · 10 years ago
  24. 12174a5 Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  25. b349e4c Issue #22116: C functions and methods (of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by Wei Wu. by Antoine Pitrou · 10 years ago
  26. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
  27. f6a271a Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename by Victor Stinner · 10 years ago
  28. 0efea32 Rerun AC, silence pointer conversion warnings. by Martin v. Löwis · 10 years ago
  29. 7252a6e Issue #20179: Apply Argument Clinic to bytes and bytearray. Patch by Tal Einat. by Martin v. Löwis · 10 years ago
  30. 331a726 Issue #22082: Fix a compiler warning (function is not a prototype) by Victor Stinner · 10 years ago
  31. 996b671 Issue #22082: Clear interned strings in slotdefs. by Martin v. Löwis · 10 years ago
  32. 5b56150 slotdefs is no longer sorted. by Martin v. Löwis · 10 years ago
  33. e1f17c6 unicodeobject.c: fix a compiler warning on Windows 64 bits by Victor Stinner · 10 years ago
  34. 973fe0b Issue #18093: Factor out the programs that embed the runtime by Nick Coghlan · 10 years ago
  35. a819105 merge 3.4 (#22036) by Benjamin Peterson · 10 years ago
  36. 1cc9520 s/stringobject/bytesobject/ (closes #22036) by Benjamin Peterson · 10 years ago
  37. 667f545 Issue #21938: simplify gen_iternext() by Antoine Pitrou · 10 years ago
  38. 1eee8e5 Issue #21803: remove macro indirections in complexobject.h by Antoine Pitrou · 10 years ago
  39. 3032ed7 upgrade to unicode 7.0.0 by Benjamin Peterson · 10 years ago
  40. a93342b Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called. by Antoine Pitrou · 10 years ago
  41. acc8cf2 Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called. by Antoine Pitrou · 10 years ago
  42. c68b7fb (Merge 3.4) Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, by Victor Stinner · 10 years ago
  43. a33bce0 Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, PyErr_Format() by Victor Stinner · 10 years ago
  44. 9f43505 (Merge 3.4) Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu by Victor Stinner · 10 years ago
  45. 293f3f5 Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu to format C by Victor Stinner · 10 years ago
  46. 3cbae68 merge 3.4 by Benjamin Peterson · 10 years ago
  47. 1791c22 use NULL not 0 by Benjamin Peterson · 10 years ago
  48. 40ee301 Issue #21205: Add a new ``__qualname__`` attribute to generator, the qualified by Victor Stinner · 10 years ago
  49. 2617199 Merge issue #21669 from 3.4 by Nick Coghlan · 10 years ago
  50. 5b1fdc1 Issue #21669: Special case print & exec syntax errors by Nick Coghlan · 10 years ago
  51. 2bc4d95 Issue #21233: Revert bytearray(int) optimization using calloc() by Victor Stinner · 10 years ago
  52. d8f0d92 Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" to by Victor Stinner · 10 years ago
  53. 5a1bb4e Initialize base types before child types by Victor Stinner · 10 years ago
  54. 426d995 Add development comments to setobject.c by Raymond Hettinger · 10 years ago
  55. bcaf599 Issue #20186: memoryobject.c: add function signatures. by Stefan Krah · 10 years ago
  56. 45e8e2f Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() by Victor Stinner · 10 years ago
  57. 470cf8d (Merge 3.4) Issue #21418: Fix a crash in the builtin function super() when by Victor Stinner · 10 years ago
  58. 1c6970f Issue #21418: Fix a crash in the builtin function super() when called without by Victor Stinner · 10 years ago
  59. bca9694 Issue #21442: Fix MSVC compiler warning introduced by issue21377. by Zachary Ware · 10 years ago
  60. 3080d92 Issue #21233: Fix _PyObject_Alloc() when compiled with WITH_VALGRIND defined by Victor Stinner · 10 years ago
  61. 4b74fba Issue 21101: Internal API for dict getitem and setitem where the hash value is known. by Raymond Hettinger · 10 years ago
  62. af8fc64 Issue #21233: Oops, Fix _PyObject_Alloc(): initialize nbytes before going to by Victor Stinner · 10 years ago
  63. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 10 years ago
  64. 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
  65. 027ce16 sprinkle some _PyId goodness around moduleobject.c by Benjamin Peterson · 10 years ago
  66. 1184e26 do not override errors from descriptors on modules by Benjamin Peterson · 10 years ago
  67. 7b9ff0e Issue8297: module attribute lookup failures now include module name in error message. by Ethan Furman · 10 years ago
  68. 715ef02 Fix a typo in the docstring of nb_index. by Zachary Ware · 10 years ago
  69. ea42b4c Fix a typo in the signature for object.__ge__ by Zachary Ware · 10 years ago
  70. 9996a7d Merge typo fix from 3.4 by Zachary Ware · 10 years ago
  71. 07b4c5e Merge typo fix from 3.4 by Zachary Ware · 10 years ago
  72. 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
  73. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  74. 4dd2525 Issue #21118: PyLong_AS_LONG() result type is long by Victor Stinner · 10 years ago
  75. 1365de7 fix reference leaks in the translate fast path (closes #21175) by Benjamin Peterson · 10 years ago
  76. 872b291 Issue #21118: Optimize also str.translate() for ASCII => ASCII deletion by Victor Stinner · 10 years ago
  77. 4ff33af Issue #21118: Add unit test for invalid character replacement (code point higher than U+10ffff) by Victor Stinner · 10 years ago
  78. 89a76ab Issue #21118: Optimize str.translate() for ASCII => ASCII translation by Victor Stinner · 10 years ago
  79. 8a4422e Issue #21118: Remove unused variable by Victor Stinner · 10 years ago
  80. 69598d4 Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format by Victor Stinner · 10 years ago
  81. 1194ea0 Issue #21118: Use _PyUnicodeWriter API in str.translate() to simplify and by Victor Stinner · 10 years ago
  82. d129eeb Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format by Victor Stinner · 10 years ago
  83. d818fc9 merge 3.4 (#21134) by Benjamin Peterson · 10 years ago
  84. 9b09ba1 bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134) by Benjamin Peterson · 10 years ago
  85. 3fec24e Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. by Antoine Pitrou · 10 years ago
  86. 04d17d3 Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. by Antoine Pitrou · 10 years ago
  87. 00ced0f merge 3.4 by Benjamin Peterson · 10 years ago
  88. d455ce4 merge 3.3 by Benjamin Peterson · 10 years ago
  89. 0ad6098 merge 3.2 by Benjamin Peterson · 10 years ago
  90. 23cf403 fix expandtabs overflow detection to be consistent and not rely on signed overflow by Benjamin Peterson · 10 years ago
  91. 9ab7480 Issue19995: more informative error message; spelling corrections; use operator.mod instead of __mod__ by Ethan Furman · 10 years ago
  92. 38d872e Issue19995: passing a non-int to %o, %c, %x, or %X now raises an exception by Ethan Furman · 10 years ago
  93. 7d00cc1 Issue #20574: Implement incremental decoder for cp65001 code by Victor Stinner · 10 years ago
  94. df81379 correct the fix for #20637; allow slot descriptor inheritance to take place before creating cached keys by Benjamin Peterson · 10 years ago
  95. af9049e merge 3.3 by Benjamin Peterson · 10 years ago
  96. 4a42cd4 avoid referencing past the bounds of an array by Benjamin Peterson · 10 years ago
  97. 1aca78d merge 3.3 by Benjamin Peterson · 10 years ago
  98. ef87f8c avoid referencing out-of-bounds memory by Benjamin Peterson · 10 years ago
  99. 45c9dce fix c89 declaration order by Benjamin Peterson · 10 years ago
  100. dfa8228 merge 3.3 by Benjamin Peterson · 10 years ago