1. d47802e Fix ref leak in error case of unicode find, count, formatlong by Christian Heimes · 11 years ago
  2. d47a045 Fix ref leak in error case of unicode index by Christian Heimes · 11 years ago
  3. ea71a52 Fix ref leak in error case of unicode rindex and rfind by Christian Heimes · 11 years ago
  4. 305e49e Fix memory leak in endswith by Christian Heimes · 11 years ago
  5. cd83fa8 Issue #13483: Use VirtualAlloc in obmalloc on Windows. by Martin v. Löwis · 11 years ago
  6. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
  7. 7660b88 Issue #9566: More long/Py_ssize_t fixes in tuple and list iterators (it_index) by Victor Stinner · 11 years ago
  8. 2199c38 Issue #9566: Fix a compiler warning in tupleiter_setstate() on Windows x64 by Victor Stinner · 11 years ago
  9. c89533f Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise by Serhiy Storchaka · 11 years ago
  10. 8eeae21 Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise by Serhiy Storchaka · 11 years ago
  11. 5e946ba Fix compilation warning with gcc 4.8 (unused typedef) by Antoine Pitrou · 11 years ago
  12. 36f01ad Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  13. 4d70562 Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  14. b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
  15. 3164f5d merge 3.3 (#18183) by Benjamin Peterson · 11 years ago
  16. 7e30373 remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value (see #18183) by Benjamin Peterson · 11 years ago
  17. 9f067f4 Issue #9566: Fix compiler warning on Windows 64-bit by Victor Stinner · 11 years ago
  18. 9d77664 Issue #9566: Fix a compiler warning on Windows 64-bit in namespace_init() by Victor Stinner · 11 years ago
  19. a2d5698 Issuse #17932: Fix an integer overflow issue on Windows 64-bit in tuple by Victor Stinner · 11 years ago
  20. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  21. e0b99ba Close #17932: Fix an integer overflow issue on Windows 64-bit in iterators: by Victor Stinner · 11 years ago
  22. d2b58a9 only recursively expand in the format spec (closes #17644) by Benjamin Peterson · 11 years ago
  23. 36f74aa Issue #17563: Fix dict resize performance regression. by Raymond Hettinger · 11 years ago
  24. 1cfebc7 Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and by Serhiy Storchaka · 11 years ago
  25. 4d94474 rewrite the parsing of field names to be more consistent wrt recursive expansion by Benjamin Peterson · 11 years ago
  26. 4895363 merge 3.3 by Benjamin Peterson · 11 years ago
  27. 2f6fe51 merge by Raymond Hettinger · 11 years ago
  28. e1b4cbc when arguments are cells clear the locals slot (backport of #17927) by Benjamin Peterson · 11 years ago
  29. 9396356 Backout c89febab4648 following private feedback by Guido. by Antoine Pitrou · 11 years ago
  30. 159ae41 when an argument is a cell, set the local copy to NULL (see #17927) by Benjamin Peterson · 11 years ago
  31. f275416 Touch up grammar for dict.update() docstring. by Brett Cannon · 11 years ago
  32. 7ce35a1 Issue #17237: Fix crash in the ASCII decoder on m68k. by Antoine Pitrou · 11 years ago
  33. 8b0e984 Issue #17237: Fix crash in the ASCII decoder on m68k. by Antoine Pitrou · 11 years ago
  34. 6832c81 #17927: Keep frame from referencing cell-ified arguments. by Guido van Rossum · 11 years ago
  35. 04e70d1 Issue #17807: Generators can now be finalized even when they are part of a reference cycle. by Antoine Pitrou · 11 years ago
  36. 6f75a3e Use Py_intptr_t to store the difference between two pointers, instead of int by Victor Stinner · 11 years ago
  37. f4f2424 Fix uninitialized value in charmap_decode_mapping() by Victor Stinner · 11 years ago
  38. 8cecc8c Issue #7330: Implement width and precision (ex: "%5.3s") for the format string by Victor Stinner · 11 years ago
  39. df6931d Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  40. 957a23b Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  41. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  42. 865eaa1 Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs by Alexandre Vassalotti · 11 years ago
  43. 5263c13 Merge removal of trailing whitespace from 3.3. by Ezio Melotti · 11 years ago
  44. 6b02772 Remove trailing whitespace. by Ezio Melotti · 11 years ago
  45. bb4503f Partial revert of changeset 9744b2df134c by Victor Stinner · 11 years ago
  46. fb161b1 Split PyUnicode_DecodeCharmap() into subfunction for readability by Victor Stinner · 11 years ago
  47. 170ca6f Fix bug in Unicode decoders related to _PyUnicodeWriter by Victor Stinner · 11 years ago
  48. 376cfa1 Fix typo in unicode_decode_call_errorhandler_writer() by Victor Stinner · 11 years ago
  49. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  50. 77282cb Cleanup PyUnicode_Contains() by Victor Stinner · 11 years ago
  51. d92e078 Minor change: fix character in do_strip() for the ASCII case by Victor Stinner · 11 years ago
  52. f033510 Cleanup PyUnicode_Append() by Victor Stinner · 11 years ago
  53. 4560f9c PyUnicode_Join(): move use_memcpy test out of the loop to cleanup and optimize the code by Victor Stinner · 11 years ago
  54. 55c0878 Optimize repr(str): use _PyUnicode_FastCopyCharacters() when no character is escaped by Victor Stinner · 11 years ago
  55. af03757 Optimize ascii(str): don't encode/decode repr if repr is already ASCII by Victor Stinner · 11 years ago
  56. 76b3b27 stringlib: remove unused STRINGLIB_RESIZE macro by Victor Stinner · 11 years ago
  57. 8a1a6cf Add _PyUnicodeWriter_WriteCharInline() by Victor Stinner · 11 years ago
  58. e2cef88 Issue #16061: Speed up str.replace() for replacing 1-character strings. by Serhiy Storchaka · 11 years ago
  59. 93196eb Issue #17715: Merge fix from 3.3. by Mark Dickinson · 11 years ago
  60. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 11 years ago
  61. 556e94b Issue #17643: Add __callback__ attribute to weakref.ref. by Mark Dickinson · 11 years ago
  62. 548677b Issue #16447: Merge fix from 3.3. by Mark Dickinson · 11 years ago
  63. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 11 years ago
  64. a0dd021 Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of by Victor Stinner · 11 years ago
  65. dc040f0 Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 11 years ago
  66. 36b045f Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 11 years ago
  67. 34ad84d merge 3.3 (#17669) by Benjamin Peterson · 11 years ago
  68. c9314d9 don't run frame if it has no stack (closes #17669) by Benjamin Peterson · 11 years ago
  69. 247109e Issue #17615: On Windows (VS2010), Performances of wmemcmp() to compare Unicode by Victor Stinner · 11 years ago
  70. 0cff4b1 replace(): only call PyUnicode_DATA(u) once by Victor Stinner · 11 years ago
  71. cc7af72 Write super-fast version of str.strip(), str.lstrip() and str.rstrip() for pure ASCII by Victor Stinner · 11 years ago
  72. f50a4e9 Don't calls macros in PyUnicode_WRITE() parameters by Victor Stinner · 11 years ago
  73. 9c79e41 Fix do_strip(): don't call PyUnicode_READ() in Py_UNICODE_ISSPACE() to not call by Victor Stinner · 11 years ago
  74. b3a6014 Fix _PyUnicode_XStrip() by Victor Stinner · 11 years ago
  75. 63d5c1a Optimize PyUnicode_DecodeCharmap() by Victor Stinner · 11 years ago
  76. a85af50 Optimize make_bloom_mask(), used by str.strip(), str.lstrip() and str.rstrip() by Victor Stinner · 11 years ago
  77. 69ed0f4 Use PyUnicode_READ() instead of PyUnicode_READ_CHAR() by Victor Stinner · 11 years ago
  78. 03c3e35 Add fast-path in PyUnicode_DecodeCharmap() for pure 8 bit encodings: by Victor Stinner · 11 years ago
  79. cd777ea Issue #17615: Comparing two Unicode strings now uses wmemcmp() when possible by Victor Stinner · 11 years ago
  80. c1302bb Issue #17615: Expand expensive PyUnicode_READ() macro in unicode_compare(): by Victor Stinner · 11 years ago
  81. 7efa3b8 Close #13126: "Simplify" FASTSEARCH() code to help the compiler to emit more by Victor Stinner · 11 years ago
  82. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  83. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  84. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  85. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  86. 0aaaa62 Issue #17469: Fix _Py_GetAllocatedBlocks() and sys.getallocatedblocks() when running on valgrind. by Antoine Pitrou · 11 years ago
  87. 207dd38 fix unused variable by Victor Stinner · 11 years ago
  88. eb4b5ac Close #16757: Avoid calling the expensive _PyUnicode_FindMaxChar() function by Victor Stinner · 11 years ago
  89. cfc4c13 Add _PyUnicodeWriter_WriteSubstring() function by Victor Stinner · 11 years ago
  90. d3f41fe merge 3.3 (#17610) by Benjamin Peterson · 11 years ago
  91. 6395241 list slotdefs in offset order rather than sorting them (closes #17610) by Benjamin Peterson · 11 years ago
  92. 7faf705 Issue #17591: Use lowercase filenames when including Windows header files. by Antoine Pitrou · 11 years ago
  93. 51612fd merge by Raymond Hettinger · 11 years ago
  94. 378170d Issue 17447: Clarify that str.isidentifier doesn't check for reserved keywords. by Raymond Hettinger · 11 years ago
  95. 5589850 fix warning (closes #17327) by Benjamin Peterson · 11 years ago
  96. 00e9886 Add PyDict_SetDefault. (closes #17327) by Benjamin Peterson · 11 years ago
  97. fb84b5d (Merge 3.3) _PyUnicode_Writer() now also reuses Unicode singletons: by Victor Stinner · 11 years ago
  98. 2cb16aa _PyUnicode_Writer() now also reuses Unicode singletons: by Victor Stinner · 11 years ago
  99. cf77da9 Backed out changeset b9f7b1bf36aa by Victor Stinner · 11 years ago
  100. 313cac8 Issue #17223: Fix PyUnicode_FromUnicode() on Windows (16-bit wchar_t type) by Victor Stinner · 11 years ago