1. 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
  2. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  3. 8f4ec8d Issue #22290: PyObject_Call() now fails with an assertion error when called by Victor Stinner · 10 years ago
  4. 48ad7c0 use __qualname__ to compute bound method repr (closes #21389) by Benjamin Peterson · 10 years ago
  5. 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
  6. 88d146b Optimize PyBytes_FromObject(): only overallocate when size=0 to not get the by Victor Stinner · 10 years ago
  7. 12174a5 Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  8. 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
  9. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
  10. f6a271a Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename by Victor Stinner · 10 years ago
  11. 0efea32 Rerun AC, silence pointer conversion warnings. by Martin v. Löwis · 10 years ago
  12. 7252a6e Issue #20179: Apply Argument Clinic to bytes and bytearray. Patch by Tal Einat. by Martin v. Löwis · 10 years ago
  13. 331a726 Issue #22082: Fix a compiler warning (function is not a prototype) by Victor Stinner · 10 years ago
  14. 996b671 Issue #22082: Clear interned strings in slotdefs. by Martin v. Löwis · 10 years ago
  15. 5b56150 slotdefs is no longer sorted. by Martin v. Löwis · 10 years ago
  16. e1f17c6 unicodeobject.c: fix a compiler warning on Windows 64 bits by Victor Stinner · 10 years ago
  17. 973fe0b Issue #18093: Factor out the programs that embed the runtime by Nick Coghlan · 10 years ago
  18. a819105 merge 3.4 (#22036) by Benjamin Peterson · 10 years ago
  19. 1cc9520 s/stringobject/bytesobject/ (closes #22036) by Benjamin Peterson · 10 years ago
  20. 667f545 Issue #21938: simplify gen_iternext() by Antoine Pitrou · 10 years ago
  21. 1eee8e5 Issue #21803: remove macro indirections in complexobject.h by Antoine Pitrou · 10 years ago
  22. 3032ed7 upgrade to unicode 7.0.0 by Benjamin Peterson · 10 years ago
  23. 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
  24. 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
  25. c68b7fb (Merge 3.4) Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, by Victor Stinner · 10 years ago
  26. a33bce0 Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, PyErr_Format() by Victor Stinner · 10 years ago
  27. 9f43505 (Merge 3.4) Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu by Victor Stinner · 10 years ago
  28. 293f3f5 Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu to format C by Victor Stinner · 10 years ago
  29. 3cbae68 merge 3.4 by Benjamin Peterson · 10 years ago
  30. 1791c22 use NULL not 0 by Benjamin Peterson · 10 years ago
  31. 40ee301 Issue #21205: Add a new ``__qualname__`` attribute to generator, the qualified by Victor Stinner · 10 years ago
  32. 2617199 Merge issue #21669 from 3.4 by Nick Coghlan · 10 years ago
  33. 5b1fdc1 Issue #21669: Special case print & exec syntax errors by Nick Coghlan · 10 years ago
  34. 2bc4d95 Issue #21233: Revert bytearray(int) optimization using calloc() by Victor Stinner · 10 years ago
  35. d8f0d92 Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" to by Victor Stinner · 10 years ago
  36. 5a1bb4e Initialize base types before child types by Victor Stinner · 10 years ago
  37. 426d995 Add development comments to setobject.c by Raymond Hettinger · 10 years ago
  38. bcaf599 Issue #20186: memoryobject.c: add function signatures. by Stefan Krah · 10 years ago
  39. 45e8e2f Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() by Victor Stinner · 10 years ago
  40. 470cf8d (Merge 3.4) Issue #21418: Fix a crash in the builtin function super() when by Victor Stinner · 10 years ago
  41. 1c6970f Issue #21418: Fix a crash in the builtin function super() when called without by Victor Stinner · 10 years ago
  42. bca9694 Issue #21442: Fix MSVC compiler warning introduced by issue21377. by Zachary Ware · 10 years ago
  43. 3080d92 Issue #21233: Fix _PyObject_Alloc() when compiled with WITH_VALGRIND defined by Victor Stinner · 10 years ago
  44. 4b74fba Issue 21101: Internal API for dict getitem and setitem where the hash value is known. by Raymond Hettinger · 10 years ago
  45. af8fc64 Issue #21233: Oops, Fix _PyObject_Alloc(): initialize nbytes before going to by Victor Stinner · 10 years ago
  46. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 10 years ago
  47. 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
  48. 027ce16 sprinkle some _PyId goodness around moduleobject.c by Benjamin Peterson · 10 years ago
  49. 1184e26 do not override errors from descriptors on modules by Benjamin Peterson · 10 years ago
  50. 7b9ff0e Issue8297: module attribute lookup failures now include module name in error message. by Ethan Furman · 10 years ago
  51. 715ef02 Fix a typo in the docstring of nb_index. by Zachary Ware · 10 years ago
  52. ea42b4c Fix a typo in the signature for object.__ge__ by Zachary Ware · 10 years ago
  53. 9996a7d Merge typo fix from 3.4 by Zachary Ware · 10 years ago
  54. 07b4c5e Merge typo fix from 3.4 by Zachary Ware · 10 years ago
  55. 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
  56. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  57. 4dd2525 Issue #21118: PyLong_AS_LONG() result type is long by Victor Stinner · 10 years ago
  58. 1365de7 fix reference leaks in the translate fast path (closes #21175) by Benjamin Peterson · 10 years ago
  59. 872b291 Issue #21118: Optimize also str.translate() for ASCII => ASCII deletion by Victor Stinner · 11 years ago
  60. 4ff33af Issue #21118: Add unit test for invalid character replacement (code point higher than U+10ffff) by Victor Stinner · 11 years ago
  61. 89a76ab Issue #21118: Optimize str.translate() for ASCII => ASCII translation by Victor Stinner · 11 years ago
  62. 8a4422e Issue #21118: Remove unused variable by Victor Stinner · 11 years ago
  63. 69598d4 Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format by Victor Stinner · 11 years ago
  64. 1194ea0 Issue #21118: Use _PyUnicodeWriter API in str.translate() to simplify and by Victor Stinner · 11 years ago
  65. d129eeb Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format by Victor Stinner · 11 years ago
  66. d818fc9 merge 3.4 (#21134) by Benjamin Peterson · 11 years ago
  67. 9b09ba1 bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134) by Benjamin Peterson · 11 years ago
  68. 3fec24e Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. by Antoine Pitrou · 11 years ago
  69. 04d17d3 Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. by Antoine Pitrou · 11 years ago
  70. 00ced0f merge 3.4 by Benjamin Peterson · 11 years ago
  71. d455ce4 merge 3.3 by Benjamin Peterson · 11 years ago
  72. 0ad6098 merge 3.2 by Benjamin Peterson · 11 years ago
  73. 23cf403 fix expandtabs overflow detection to be consistent and not rely on signed overflow by Benjamin Peterson · 11 years ago
  74. 9ab7480 Issue19995: more informative error message; spelling corrections; use operator.mod instead of __mod__ by Ethan Furman · 11 years ago
  75. 38d872e Issue19995: passing a non-int to %o, %c, %x, or %X now raises an exception by Ethan Furman · 11 years ago
  76. 7d00cc1 Issue #20574: Implement incremental decoder for cp65001 code by Victor Stinner · 11 years ago
  77. df81379 correct the fix for #20637; allow slot descriptor inheritance to take place before creating cached keys by Benjamin Peterson · 11 years ago
  78. af9049e merge 3.3 by Benjamin Peterson · 11 years ago
  79. 4a42cd4 avoid referencing past the bounds of an array by Benjamin Peterson · 11 years ago
  80. 1aca78d merge 3.3 by Benjamin Peterson · 11 years ago
  81. ef87f8c avoid referencing out-of-bounds memory by Benjamin Peterson · 11 years ago
  82. 45c9dce fix c89 declaration order by Benjamin Peterson · 11 years ago
  83. dfa8228 merge 3.3 by Benjamin Peterson · 11 years ago
  84. 041c38a don't do pointer arithmetic with signed numbers by Benjamin Peterson · 11 years ago
  85. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  86. 4ca688e Fix pickling of rangeiter. rangeiter_setstate would not allow setting it by Kristján Valur Jónsson · 11 years ago
  87. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  88. 25ea45d Merge with 3.3 by Kristján Valur Jónsson · 11 years ago
  89. 056e265 Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ by Yury Selivanov · 11 years ago
  90. 94ee389 Issue #19619: Blacklist non-text codecs in method API by Serhiy Storchaka · 11 years ago
  91. f0b5a7c Issue #20637: Key-sharing now also works for instance dictionaries of subclasses. Patch by Peter Ingebretson. by Antoine Pitrou · 11 years ago
  92. e686c5c look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) by Benjamin Peterson · 11 years ago
  93. 4267869 merge 3.3 (#20507) by Benjamin Peterson · 11 years ago
  94. 9743b2c give non-iterable TypeError a message (closes #20507) by Benjamin Peterson · 11 years ago
  95. 226c571 Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. by Serhiy Storchaka · 11 years ago
  96. 1f9d11b Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. by Serhiy Storchaka · 11 years ago
  97. 87a5c51 Issue #19255: The builtins module is restored to initial value before by Serhiy Storchaka · 11 years ago
  98. 8f9f0f1 Issue #20517: Removed unnecessary new (short-lived) functions from PyErr. by Larry Hastings · 11 years ago
  99. 69a2547 Issue #20530: The signatures for slot builtins have been updated by Larry Hastings · 11 years ago
  100. b082731 Issue #20517: Functions in the os module that accept two filenames by Larry Hastings · 11 years ago