1. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 12 years ago
  2. 77282cb Cleanup PyUnicode_Contains() by Victor Stinner · 12 years ago
  3. d92e078 Minor change: fix character in do_strip() for the ASCII case by Victor Stinner · 12 years ago
  4. f033510 Cleanup PyUnicode_Append() by Victor Stinner · 12 years ago
  5. 4560f9c PyUnicode_Join(): move use_memcpy test out of the loop to cleanup and optimize the code by Victor Stinner · 12 years ago
  6. 55c0878 Optimize repr(str): use _PyUnicode_FastCopyCharacters() when no character is escaped by Victor Stinner · 12 years ago
  7. af03757 Optimize ascii(str): don't encode/decode repr if repr is already ASCII by Victor Stinner · 12 years ago
  8. 76b3b27 stringlib: remove unused STRINGLIB_RESIZE macro by Victor Stinner · 12 years ago
  9. 8a1a6cf Add _PyUnicodeWriter_WriteCharInline() by Victor Stinner · 12 years ago
  10. e2cef88 Issue #16061: Speed up str.replace() for replacing 1-character strings. by Serhiy Storchaka · 12 years ago
  11. 93196eb Issue #17715: Merge fix from 3.3. by Mark Dickinson · 12 years ago
  12. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 12 years ago
  13. 556e94b Issue #17643: Add __callback__ attribute to weakref.ref. by Mark Dickinson · 12 years ago
  14. 548677b Issue #16447: Merge fix from 3.3. by Mark Dickinson · 12 years ago
  15. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 12 years ago
  16. a0dd021 Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of by Victor Stinner · 12 years ago
  17. dc040f0 Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 12 years ago
  18. 36b045f Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 12 years ago
  19. 34ad84d merge 3.3 (#17669) by Benjamin Peterson · 12 years ago
  20. c9314d9 don't run frame if it has no stack (closes #17669) by Benjamin Peterson · 12 years ago
  21. 247109e Issue #17615: On Windows (VS2010), Performances of wmemcmp() to compare Unicode by Victor Stinner · 12 years ago
  22. 0cff4b1 replace(): only call PyUnicode_DATA(u) once by Victor Stinner · 12 years ago
  23. cc7af72 Write super-fast version of str.strip(), str.lstrip() and str.rstrip() for pure ASCII by Victor Stinner · 12 years ago
  24. f50a4e9 Don't calls macros in PyUnicode_WRITE() parameters by Victor Stinner · 12 years ago
  25. 9c79e41 Fix do_strip(): don't call PyUnicode_READ() in Py_UNICODE_ISSPACE() to not call by Victor Stinner · 12 years ago
  26. b3a6014 Fix _PyUnicode_XStrip() by Victor Stinner · 12 years ago
  27. 63d5c1a Optimize PyUnicode_DecodeCharmap() by Victor Stinner · 12 years ago
  28. a85af50 Optimize make_bloom_mask(), used by str.strip(), str.lstrip() and str.rstrip() by Victor Stinner · 12 years ago
  29. 69ed0f4 Use PyUnicode_READ() instead of PyUnicode_READ_CHAR() by Victor Stinner · 12 years ago
  30. 03c3e35 Add fast-path in PyUnicode_DecodeCharmap() for pure 8 bit encodings: by Victor Stinner · 12 years ago
  31. cd777ea Issue #17615: Comparing two Unicode strings now uses wmemcmp() when possible by Victor Stinner · 12 years ago
  32. c1302bb Issue #17615: Expand expensive PyUnicode_READ() macro in unicode_compare(): by Victor Stinner · 12 years ago
  33. 7efa3b8 Close #13126: "Simplify" FASTSEARCH() code to help the compiler to emit more by Victor Stinner · 12 years ago
  34. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 12 years ago
  35. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 12 years ago
  36. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 12 years ago
  37. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 12 years ago
  38. 0aaaa62 Issue #17469: Fix _Py_GetAllocatedBlocks() and sys.getallocatedblocks() when running on valgrind. by Antoine Pitrou · 12 years ago
  39. 207dd38 fix unused variable by Victor Stinner · 12 years ago
  40. eb4b5ac Close #16757: Avoid calling the expensive _PyUnicode_FindMaxChar() function by Victor Stinner · 12 years ago
  41. cfc4c13 Add _PyUnicodeWriter_WriteSubstring() function by Victor Stinner · 12 years ago
  42. d3f41fe merge 3.3 (#17610) by Benjamin Peterson · 12 years ago
  43. 6395241 list slotdefs in offset order rather than sorting them (closes #17610) by Benjamin Peterson · 12 years ago
  44. 7faf705 Issue #17591: Use lowercase filenames when including Windows header files. by Antoine Pitrou · 12 years ago
  45. 51612fd merge by Raymond Hettinger · 12 years ago
  46. 378170d Issue 17447: Clarify that str.isidentifier doesn't check for reserved keywords. by Raymond Hettinger · 12 years ago
  47. 5589850 fix warning (closes #17327) by Benjamin Peterson · 12 years ago
  48. 00e9886 Add PyDict_SetDefault. (closes #17327) by Benjamin Peterson · 12 years ago
  49. fb84b5d (Merge 3.3) _PyUnicode_Writer() now also reuses Unicode singletons: by Victor Stinner · 12 years ago
  50. 2cb16aa _PyUnicode_Writer() now also reuses Unicode singletons: by Victor Stinner · 12 years ago
  51. cf77da9 Backed out changeset b9f7b1bf36aa by Victor Stinner · 12 years ago
  52. 313cac8 Issue #17223: Fix PyUnicode_FromUnicode() on Windows (16-bit wchar_t type) by Victor Stinner · 12 years ago
  53. 42f382f merge 3.3 (#17328) by Benjamin Peterson · 12 years ago
  54. b1efa53 fix possible setdefault refleak (closes #17328) by Benjamin Peterson · 12 years ago
  55. 3602547 (Merge 3.3) Issue #17223: Fix PyUnicode_FromUnicode() for string of 1 character by Victor Stinner · 12 years ago
  56. d21b58c Issue #17223: Fix PyUnicode_FromUnicode() for string of 1 character outside by Victor Stinner · 12 years ago
  57. 06b16f8 Remove unused defines. by Serhiy Storchaka · 12 years ago
  58. 18809fa Remove unused defines. by Serhiy Storchaka · 12 years ago
  59. abe40c2 merge 3.3 (#17228) by Benjamin Peterson · 12 years ago
  60. 2dba1ee fix building without pymalloc (closes #17228) by Benjamin Peterson · 12 years ago
  61. 5e06d1d Merge 3.3. by Stefan Krah · 12 years ago
  62. 674a42b Fix error messages. by Stefan Krah · 12 years ago
  63. aaf16b9 Merge: #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  64. 702a5dc #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  65. 6b30759 #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  66. 9d05c8c Issue #15022: Ensure all pickle protocols are supported. by Eric Snow · 12 years ago
  67. b5c8f92 Issue #15022: Add pickle and comparison support to types.SimpleNamespace. by Eric Snow · 12 years ago
  68. b8cbba5 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  69. 801d955 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  70. 5e61f14 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  71. 8ad5b07 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  72. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  73. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  74. cfd2c1b (Merge 3.3) Issue #17137: When an Unicode string is resized, the internal wide by Victor Stinner · 12 years ago
  75. bbbac2e Issue #17137: When an Unicode string is resized, the internal wide character by Victor Stinner · 12 years ago
  76. d0c79dc Issue #17043: The unicode-internal decoder no longer read past the end of by Serhiy Storchaka · 12 years ago
  77. 03ee12e Issue #17043: The unicode-internal decoder no longer read past the end of by Serhiy Storchaka · 12 years ago
  78. 3fd4ab3 Issue #17043: The unicode-internal decoder no longer read past the end of by Serhiy Storchaka · 12 years ago
  79. 8911ef5 Issue #17034: Use Py_CLEAR() in bytesobject.c. by Serhiy Storchaka · 12 years ago
  80. d357a3f Issue #17034: Use Py_CLEAR() in bytesobject.c. by Serhiy Storchaka · 12 years ago
  81. f458a03 Issue #17034: Use Py_CLEAR() in bytesobject.c. by Serhiy Storchaka · 12 years ago
  82. ce9e3c3 Silence a -Wformat-extra-argument warning when compiling. by Gregory P. Smith · 12 years ago
  83. 2aee6a6 Issue #16971: Fix a refleak in the charmap decoder. by Serhiy Storchaka · 12 years ago
  84. afb1cb5 Issue #16971: Fix a refleak in the charmap decoder. by Serhiy Storchaka · 12 years ago
  85. 8fe5a9f Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. by Serhiy Storchaka · 12 years ago
  86. 24193de Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. by Serhiy Storchaka · 12 years ago
  87. d679377 Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. by Serhiy Storchaka · 12 years ago
  88. 07c7136 Issue #16772: in int(x, base), non-integer bases must have an __index__ method. by Mark Dickinson · 12 years ago
  89. 3a62e45 Merge typo fixes from 3.3. by Ezio Melotti · 12 years ago
  90. 3f5db39 Fix a few typos and a double semicolon. Patch by Eitan Adler. by Ezio Melotti · 12 years ago
  91. ed3c412 Issue #10156: In the interpreter's initialization phase, unicode globals by Serhiy Storchaka · 12 years ago
  92. 678db84 Issue #10156: In the interpreter's initialization phase, unicode globals by Serhiy Storchaka · 12 years ago
  93. 0599725 Issue #10156: In the interpreter's initialization phase, unicode globals by Serhiy Storchaka · 12 years ago
  94. 570c5b2 Issue #16980: Fix processing of escaped non-ascii bytes in the by Serhiy Storchaka · 12 years ago
  95. 73e3880 Issue #16980: Fix processing of escaped non-ascii bytes in the by Serhiy Storchaka · 12 years ago
  96. f584aba Issue #16975: Fix error handling bug in the escape-decode bytes decoder. by Serhiy Storchaka · 12 years ago
  97. e58785b Issue #16975: Fix error handling bug in the escape-decode bytes decoder. by Serhiy Storchaka · 12 years ago
  98. ace3ad3 Issue #16975: Fix error handling bug in the escape-decode bytes decoder. by Serhiy Storchaka · 12 years ago
  99. 6481bfb Issue #16335: Fix integer overflow in unicode-escape decoder. by Serhiy Storchaka · 12 years ago
  100. c35f3a9 Issue #16335: Fix integer overflow in unicode-escape decoder. by Serhiy Storchaka · 12 years ago