1. 9bd126a the days of pre-standard C compilers are gone by Benjamin Peterson · 12 years ago
  2. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  3. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  4. 41a863c Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator by Victor Stinner · 12 years ago
  5. 528b54b Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  6. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  7. d9a3591 merge 3.2 by Benjamin Peterson · 12 years ago
  8. e249dca merge 3.2 by Benjamin Peterson · 12 years ago
  9. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 12 years ago
  10. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  11. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  12. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  13. 8eb1269 add generic implementation of a __dict__ descriptor for C types by Benjamin Peterson · 12 years ago
  14. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 12 years ago
  15. ccd5715 PEP 410 by Victor Stinner · 12 years ago
  16. ed27785 Issue #13706: Add assertions to detect bugs earlier by Victor Stinner · 13 years ago
  17. 7ab4af0 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  18. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  19. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  20. fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 13 years ago
  21. 5e8260b Issue #13727: Add 3 macros to access PyDateTime_Delta members: by Amaury Forgeot d'Arc · 13 years ago
  22. c0beabc move LINENO define to where it actually belongs by Benjamin Peterson · 13 years ago
  23. da05f45 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago
  24. 3388060 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago
  25. f5b62a9 Consolidate the occurrances of the prime used as the multiplier when hashing. by Gregory P. Smith · 13 years ago
  26. 63e6c32 Consolidate the occurrances of the prime used as the multiplier when hashing by Gregory P. Smith · 13 years ago
  27. d5890c8 add str.casefold() (closes #13752) by Benjamin Peterson · 13 years ago
  28. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
  29. 76e1bb0 Fix indenting by Nick Coghlan · 13 years ago
  30. 77b1ecf Silence compilation warnings on Windows by Amaury Forgeot d'Arc · 13 years ago
  31. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  32. b2bf01d use full unicode mappings for upper/lower/title case (#12736) by Benjamin Peterson · 13 years ago
  33. 3fe5531 Add a new PyUnicode_Fill() function by Victor Stinner · 13 years ago
  34. 5b62942 Issue #13577: Built-in methods and functions now have a __qualname__. by Antoine Pitrou · 13 years ago
  35. 80bc72d fix PyCompactUnicodeObject doc (test) by Victor Stinner · 13 years ago
  36. 52e2cc8 backout 7876cd49300d: Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 13 years ago
  37. 0ba5af2 Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 13 years ago
  38. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  39. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
  40. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  41. 093ce9c Issue #6695: Full garbage collection runs now clear the freelist of set objects. by Antoine Pitrou · 13 years ago
  42. bfebb7b improve abstract property support (closes #11610) by Benjamin Peterson · 13 years ago
  43. 9d57481 Issue #13577: various kinds of descriptors now have a __qualname__ attribute. by Antoine Pitrou · 13 years ago
  44. 16e6a80 PyUnicode_Resize(): warn about canonical representation by Victor Stinner · 13 years ago
  45. b0a82a6 Fix PyUnicode_Resize() for compact string: leave the string unchanged on error by Victor Stinner · 13 years ago
  46. bf6e560 Make PyUnicode_Copy() private => _PyUnicode_Copy() by Victor Stinner · 13 years ago
  47. 7a9105a resize_copy() now supports legacy ready strings by Victor Stinner · 13 years ago
  48. 24c74be PyUnicode_IS_ASCII() macro ensures that the string is ready by Victor Stinner · 13 years ago
  49. 04f6974 - Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix by Barry Warsaw · 13 years ago
  50. 9f57135 - Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix by Barry Warsaw · 13 years ago
  51. 551ac95 Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macros by Victor Stinner · 13 years ago
  52. 66f412e MERGE: Closes issue #13488: Some old preprocessors have problem with #define not in the first column by Jesus Cea · 13 years ago
  53. 6d47db3 Closes issue #13488: Some old preprocessors have problem with #define not in the first column by Jesus Cea · 13 years ago
  54. 0fdfceb Issue #12567: The curses module uses Unicode functions for Unicode arguments by Victor Stinner · 13 years ago
  55. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  56. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  57. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  58. f3ae620 PyUnicode_GET_SIZE() checks that PyUnicode_AsUnicode() succeed by Victor Stinner · 13 years ago
  59. 77faf69 _PyUnicode_CheckConsistency() also checks maxchar maximum value, by Victor Stinner · 13 years ago
  60. 9343999 Fix PyUnicode_CopyCharacters() doc by Victor Stinner · 13 years ago
  61. 7c8bbbb Ensure that Py_UCS4 is 32 bits and Py_UCS2 is 16 bits by Victor Stinner · 13 years ago
  62. aadc519 Merge branch 3.2 (closes #13338) by Petri Lehtinen · 13 years ago
  63. 8d40f16 Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER by Petri Lehtinen · 13 years ago
  64. f34a0cd Issue #10227: Add an allocation cache for a single slice object. by Antoine Pitrou · 13 years ago
  65. 6f9568b Fix misused of "PyUnicodeObject" structure name in unicodeobject.h by Victor Stinner · 13 years ago
  66. 9a812cb Issue #13389: Full garbage collection passes now clear the freelists for by Antoine Pitrou · 13 years ago
  67. 1db7c13 Port encoders from Py_UNICODE API to unicode object API. by Martin v. Löwis · 13 years ago
  68. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  69. e30c0a1 Fix gdb/libpython.py for not ready Unicode strings by Victor Stinner · 13 years ago
  70. 7931d9a Replace PyUnicodeObject type by PyObject by Victor Stinner · 13 years ago
  71. 23e275b Port UCS1 and charmap codecs to new API. by Martin v. Löwis · 13 years ago
  72. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  73. 0d3072e Drop Py_UCS4_ functions. Closes #13246. by Martin v. Löwis · 13 years ago
  74. 9db1a8b Replace PyUnicodeObject* by PyObject* where it was irrevelant by Victor Stinner · 13 years ago
  75. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  76. 931b8aa #12753: Add support for Unicode name aliases and named sequences. by Ezio Melotti · 13 years ago
  77. 55c7e00 Simplify _PyUnicode_COMPACT_DATA() macro by Victor Stinner · 13 years ago
  78. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  79. e606983 Fix build under Windows by Antoine Pitrou · 13 years ago
  80. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  81. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  82. 8813104 Simplify PyUnicode_MAX_CHAR_VALUE by Victor Stinner · 13 years ago
  83. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  84. 794d567 any_find_slice() doesn't use callbacks anymore by Victor Stinner · 13 years ago
  85. 87da872 Drop extra semicolon. by Martin v. Löwis · 13 years ago
  86. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  87. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  88. db6c7f5 Update C API docs for PEP 393. by Georg Brandl · 13 years ago
  89. c61c8d7 Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  90. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  91. b066cc6 Fix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE by Victor Stinner · 13 years ago
  92. dbf697a Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  93. 0f4ee93 Branch merge by Éric Araujo · 13 years ago
  94. 1d4b35f rephrase PyUnicode_1BYTE_KIND documentation by Victor Stinner · 13 years ago
  95. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  96. 80a348c Fix typo by Éric Araujo · 13 years ago
  97. 310638e Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  98. 36225c6 Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  99. 30134f5 Complete documentation of compact ASCII strings by Victor Stinner · 13 years ago
  100. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago