1. 62e977f Close issue23467: add %r compatibility to bytes and bytearray by Ethan Furman · 9 years ago
  2. 63afdaa Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 9 years ago
  3. a654510 Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 9 years ago
  4. 283f3f8 Issue #23571: Oops, fix #ifdef assert() by Victor Stinner · 9 years ago
  5. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  6. abda8dd merge 3.4 (#23590) by Benjamin Peterson · 9 years ago
  7. a915723 fix potential refleak in PyFloat_AsDouble (closes #23590) by Benjamin Peterson · 9 years ago
  8. 92ce1b4 merge 3.3 (#23362) by Benjamin Peterson · 9 years ago
  9. e5a853c use PyMem_NEW to detect overflow (closes #23362) by Benjamin Peterson · 9 years ago
  10. 42fc0eb Issue #21293: Remove unnecessary "capsule hack". by Larry Hastings · 9 years ago
  11. 3e96f32 Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks. by Steve Dower · 9 years ago
  12. 71c6f44 Fixed a typo. by Serhiy Storchaka · 9 years ago
  13. 490055a Issue #20204: Deprecation warning is now raised for builtin type without the by Serhiy Storchaka · 9 years ago
  14. c8fd9ce merge 3.4 (#23515) by Benjamin Peterson · 9 years ago
  15. b808d59 fix merge_collapse to actually maintain the invariant it purports to (closes #23515) by Benjamin Peterson · 9 years ago
  16. 78a8249 Issue #23490: Fixed possible crashes related to interoperability between by Serhiy Storchaka · 9 years ago
  17. e55181f Issue #23490: Fixed possible crashes related to interoperability between by Serhiy Storchaka · 9 years ago
  18. 26861b0 Issue #23450: Fixed possible integer overflows. by Serhiy Storchaka · 9 years ago
  19. 4d0d982 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  20. 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  21. ea5ce5a Issue #23383: Cleaned up bytes formatting. by Serhiy Storchaka · 9 years ago
  22. 438f913 Mirco-optimizations to reduce register spills and reloads observed on CLANG and GCC. by Raymond Hettinger · 9 years ago
  23. d327d8d Fix definition mismatch for type_is_subtype_base_chain. by Steve Dower · 9 years ago
  24. b4e20bb Fix definition mismatch for type_is_subtype_base_chain. by Steve Dower · 9 years ago
  25. 6c62ac1 merge 3.4 (#22735) by Benjamin Peterson · 9 years ago
  26. 104b9e0 fix many custom mro() edge cases and improve code quality (#22735) by Benjamin Peterson · 9 years ago
  27. 8249282 Minor code clean up. by Raymond Hettinger · 9 years ago
  28. 06bb122 Issue 23359: Reduce size of code in set_lookkey. Only do linear probes when there is no wrap-around. by Raymond Hettinger · 9 years ago
  29. 5178d91 Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() by Stefan Krah · 9 years ago
  30. 8384870 Issue #22896: Fixed using _getbuffer() in recently added _PyBytes_Format(). by Serhiy Storchaka · 9 years ago
  31. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  32. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  33. c658d85 Issue 23359: Tighten inner search loop for sets (don't and-mask every entry lookup). by Raymond Hettinger · 10 years ago
  34. 2e6658b Merge from 3.4. by Stefan Krah · 10 years ago
  35. 7213fcc Issue #23370: Fix off-by-one error for non-contiguous buffers. by Stefan Krah · 10 years ago
  36. 363af44 Issue #22445: PyBuffer_IsContiguous() now implements precise contiguity by Stefan Krah · 10 years ago
  37. 59ecabd Keep the definition of i consistent between set_lookkey() and set_insert_clean(). by Raymond Hettinger · 10 years ago
  38. 9edd753 Minor tweak to improve code clarity. by Raymond Hettinger · 10 years ago
  39. 06a1c8d Fix typo in a comment. by Raymond Hettinger · 10 years ago
  40. 9d4cbcc allow changing __class__ between a heaptype and non-heaptype in some cases (closes #22986) by Benjamin Peterson · 10 years ago
  41. f5324d7 Closes #22668: Merge from 3.4. by Stefan Krah · 10 years ago
  42. fa5d6a5 Issue #22668: Ensure that format strings survive slicing after casting. by Stefan Krah · 10 years ago
  43. 66acbb2 Issue #22079: PyType_Ready() now checks that statically allocated type has by Serhiy Storchaka · 10 years ago
  44. e09bcc8 Issue #22079: PyType_Ready() now checks that statically allocated type has by Serhiy Storchaka · 10 years ago
  45. 4dbc305 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  46. f8d1a31 Revert unintended part of the commit (the key==dummy test wasn't supposed to change). by Raymond Hettinger · 10 years ago
  47. a5ebbf6 Remove unneeded dummy test from the set search loop (when the hashes match we know the key is not a dummy). by Raymond Hettinger · 10 years ago
  48. 3037e84 Issue #23269: Tighten search_loop in set_insert_clean() by Raymond Hettinger · 10 years ago
  49. 5474d0b Issue #20284: Fix a compilation warning on Windows by Victor Stinner · 10 years ago
  50. 29dacf2 Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and by Victor Stinner · 10 years ago
  51. a8efc96 ensure ilen is initialized when it is assigned to len by Benjamin Peterson · 10 years ago
  52. 34af502 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  53. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  54. b335dfe Set the hash values of dummy entries to -1. Improves quality of entry->hash == hash tests. by Raymond Hettinger · 10 years ago
  55. 4d45c10 Update out-of-date comments. by Raymond Hettinger · 10 years ago
  56. 93035c4 Issue #23119: Simplify setobject by inlining the special case for unicode equality testing. by Raymond Hettinger · 10 years ago
  57. bbd3aa8 Issue #23321: Fixed a crash in str.decode() when error handler returned by Serhiy Storchaka · 10 years ago
  58. 7e4b905 Issue #23321: Fixed a crash in str.decode() when error handler returned by Serhiy Storchaka · 10 years ago
  59. b95b561 Issue20284: Implement PEP461 by Ethan Furman · 10 years ago
  60. ed741d4 A hybrid of and-masking and a conditional-set-to-zero produce even faster search loop. by Raymond Hettinger · 10 years ago
  61. bd9b200 Update copyright for 2015 updates. by Raymond Hettinger · 10 years ago
  62. 9cd6a78 Clean-up, simplify, and slightly speed-up bounds logic in set_pop(). by Raymond Hettinger · 10 years ago
  63. 1202a47 Issue 23261: Clean-up the hack to store the set.pop() search finger in a hash field instead of the setobject. by Raymond Hettinger · 10 years ago
  64. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  65. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  66. 645f896 merge 3.4 (#23210) by Benjamin Peterson · 10 years ago
  67. bcf8554 remove buzzword (closes #23210) by Benjamin Peterson · 10 years ago
  68. 8edf27c Small clean-up. Factor-out common code for add, contains, and discard function pairs. by Raymond Hettinger · 10 years ago
  69. 08e3dc0 Issue #23107: Tighten-up loops in setobject.c by Raymond Hettinger · 10 years ago
  70. 707b5cc Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX by Serhiy Storchaka · 10 years ago
  71. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  72. 83cf99d Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  73. 133b11b Issue #22975: Close block at right place. by Serhiy Storchaka · 10 years ago
  74. e823933 remove tautological condition (closes #22954) by Benjamin Peterson · 10 years ago
  75. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  76. 0b2cacb Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  77. 407249c Issue #22975: Close block at right place. by Serhiy Storchaka · 10 years ago
  78. 0a59d55 merge 3.4 (#22954) by Benjamin Peterson · 10 years ago
  79. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
  80. 3aa979e Issue #20948: Inline makefmt() in unicode_fromformat_arg() by Victor Stinner · 10 years ago
  81. 2a40e36 Issue #22847: Improve method cache efficiency. by Antoine Pitrou · 10 years ago
  82. 8a03896 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
  83. cc23154 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
  84. b8fa289 merge with 3.4 by Georg Brandl · 10 years ago
  85. e1d26f3 Closes #22772: fix __ifloordiv__ and __itruediv__ docstring. by Georg Brandl · 10 years ago
  86. bc92bbd Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode. by Antoine Pitrou · 10 years ago
  87. d696732 Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode. by Antoine Pitrou · 10 years ago
  88. fa50216 Merge 3.3 by Benjamin Peterson · 10 years ago
  89. b6dc9b7 Fixed signed/unsigned comparison warning by Antoine Pitrou · 10 years ago
  90. 4e33424 Fixed signed/unsigned comparison warning by Antoine Pitrou · 10 years ago
  91. 736982d merge 3.4 (closes #22643) by Benjamin Peterson · 10 years ago
  92. 9c422f3 merge 3.3 by Benjamin Peterson · 10 years ago
  93. 1e211ff it suffices to check for PY_SSIZE_T_MAX overflow (#22643) by Benjamin Peterson · 10 years ago
  94. 315aa40 Merge 3.4 by Benjamin Peterson · 10 years ago
  95. 60d7a73 Merge 3.3 by Benjamin Peterson · 10 years ago
  96. c0e64f5 make sure length is unsigned by Benjamin Peterson · 10 years ago
  97. 6925264 merge 3.4 (#22643) by Benjamin Peterson · 10 years ago
  98. 1cbb3fe merge 3.3 (#22643) by Benjamin Peterson · 10 years ago
  99. e1bd38c fix integer overflow in unicode case operations (closes #22643) by Benjamin Peterson · 10 years ago
  100. dfbeb16 Issue #22615: Argument Clinic now supports the "type" argument for the by Larry Hastings · 10 years ago