1. 551ac95 Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macros by Victor Stinner · 13 years ago
  2. 66f412e MERGE: Closes issue #13488: Some old preprocessors have problem with #define not in the first column by Jesus Cea · 13 years ago
  3. 6d47db3 Closes issue #13488: Some old preprocessors have problem with #define not in the first column by Jesus Cea · 13 years ago
  4. 0fdfceb Issue #12567: The curses module uses Unicode functions for Unicode arguments by Victor Stinner · 13 years ago
  5. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  6. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  7. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  8. f3ae620 PyUnicode_GET_SIZE() checks that PyUnicode_AsUnicode() succeed by Victor Stinner · 13 years ago
  9. 77faf69 _PyUnicode_CheckConsistency() also checks maxchar maximum value, by Victor Stinner · 13 years ago
  10. 9343999 Fix PyUnicode_CopyCharacters() doc by Victor Stinner · 13 years ago
  11. 7c8bbbb Ensure that Py_UCS4 is 32 bits and Py_UCS2 is 16 bits by Victor Stinner · 13 years ago
  12. aadc519 Merge branch 3.2 (closes #13338) by Petri Lehtinen · 13 years ago
  13. 8d40f16 Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER by Petri Lehtinen · 13 years ago
  14. f34a0cd Issue #10227: Add an allocation cache for a single slice object. by Antoine Pitrou · 13 years ago
  15. 6f9568b Fix misused of "PyUnicodeObject" structure name in unicodeobject.h by Victor Stinner · 13 years ago
  16. 9a812cb Issue #13389: Full garbage collection passes now clear the freelists for by Antoine Pitrou · 13 years ago
  17. 1db7c13 Port encoders from Py_UNICODE API to unicode object API. by Martin v. Löwis · 13 years ago
  18. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  19. e30c0a1 Fix gdb/libpython.py for not ready Unicode strings by Victor Stinner · 13 years ago
  20. 7931d9a Replace PyUnicodeObject type by PyObject by Victor Stinner · 13 years ago
  21. 23e275b Port UCS1 and charmap codecs to new API. by Martin v. Löwis · 13 years ago
  22. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  23. 0d3072e Drop Py_UCS4_ functions. Closes #13246. by Martin v. Löwis · 13 years ago
  24. 9db1a8b Replace PyUnicodeObject* by PyObject* where it was irrevelant by Victor Stinner · 13 years ago
  25. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  26. 931b8aa #12753: Add support for Unicode name aliases and named sequences. by Ezio Melotti · 13 years ago
  27. 55c7e00 Simplify _PyUnicode_COMPACT_DATA() macro by Victor Stinner · 13 years ago
  28. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  29. e606983 Fix build under Windows by Antoine Pitrou · 13 years ago
  30. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  31. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  32. 8813104 Simplify PyUnicode_MAX_CHAR_VALUE by Victor Stinner · 13 years ago
  33. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  34. 794d567 any_find_slice() doesn't use callbacks anymore by Victor Stinner · 13 years ago
  35. 87da872 Drop extra semicolon. by Martin v. Löwis · 13 years ago
  36. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  37. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  38. db6c7f5 Update C API docs for PEP 393. by Georg Brandl · 13 years ago
  39. c61c8d7 Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  40. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  41. b066cc6 Fix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE by Victor Stinner · 13 years ago
  42. dbf697a Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  43. 0f4ee93 Branch merge by Éric Araujo · 13 years ago
  44. 1d4b35f rephrase PyUnicode_1BYTE_KIND documentation by Victor Stinner · 13 years ago
  45. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  46. 80a348c Fix typo by Éric Araujo · 13 years ago
  47. 310638e Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  48. 36225c6 Try to fix linking failures under Windows by Antoine Pitrou · 13 years ago
  49. 30134f5 Complete documentation of compact ASCII strings by Victor Stinner · 13 years ago
  50. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  51. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  52. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  53. c3cec78 Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII by Victor Stinner · 13 years ago
  54. 4d0d54b Document requierements of Unicode kinds by Victor Stinner · 13 years ago
  55. 07de325 More fixes. by Georg Brandl · 13 years ago
  56. c6bc4c6 Fix a few typos in the unicode header. by Georg Brandl · 13 years ago
  57. 4975a9b Fix grammar. by Georg Brandl · 13 years ago
  58. b9275c1 Speedup str[a:b] and PyUnicode_FromKindAndData by Victor Stinner · 13 years ago
  59. 85041a5 _PyUnicode_CheckConsistency() checks utf8 field consistency by Victor Stinner · 13 years ago
  60. a3b334d PyUnicode_Ready() now sets ascii=1 if maxchar < 128 by Victor Stinner · 13 years ago
  61. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  62. 3794376 PyUnicode_READ_CHAR() ensures that the string is ready by Victor Stinner · 13 years ago
  63. 7a48ff7 Use Py_UCS1 instead of unsigned char in unicodeobject.h by Victor Stinner · 13 years ago
  64. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago
  65. 9f789e7 _PyUnicode_AsKind() is *not* part of the stable ABI by Victor Stinner · 13 years ago
  66. 4584a5b PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE() by Victor Stinner · 13 years ago
  67. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  68. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  69. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  70. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  71. f0ddadc Rename Py_BUILD_ASSERT to Py_BUILD_ASSERT_EXPR by Victor Stinner · 13 years ago
  72. 573696a pymacro.h: Inline _Py_ARRAY_LENGTH_CHECK() and add http://ccodearchive.net/ by Victor Stinner · 13 years ago
  73. dfb866d Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an array by Victor Stinner · 13 years ago
  74. 2bdc7f5 Move code related to compile from Python.h to compile.h by Victor Stinner · 13 years ago
  75. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  76. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  77. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  78. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  79. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 13 years ago
  80. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 13 years ago
  81. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  82. 5ce1b0d Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODE by Victor Stinner · 13 years ago
  83. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  84. 0390151 Fix typo in comment: _PyHash_Double -> _Py_HashDouble. by Mark Dickinson · 13 years ago
  85. f955eb2 Merge 3.2: Fix PyUnicode_AsWideCharString() doc by Victor Stinner · 13 years ago
  86. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
  87. 06ee020 Post-release version bump. by Georg Brandl · 13 years ago
  88. 3484a87 Merge with release clone. by Georg Brandl · 13 years ago
  89. e35dc51 merge 3.2 by Benjamin Peterson · 13 years ago
  90. eff61f6 make sure to initialize the method wrapper type by Benjamin Peterson · 13 years ago
  91. ac7e9e0 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
  92. aa26b27 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
  93. b0993bc Bump to 3.2.2. by Georg Brandl · 13 years ago
  94. 8c9375b #10542: Add 4 macros to work with surrogates: Py_UNICODE_IS_SURROGATE, Py_UNICODE_IS_HIGH_SURROGATE, Py_UNICODE_IS_LOW_SURROGATE, Py_UNICODE_JOIN_SURROGATES. by Ezio Melotti · 13 years ago
  95. 666ed0b Post-release steps. by Georg Brandl · 13 years ago
  96. b3f0ce4 Bump version to 3.2.2rc1. by Georg Brandl · 13 years ago
  97. 7d2f9e1 Add Py_RETURN_NOTIMPLEMENTED macro. Fixes #12724. by Brian Curtin · 13 years ago
  98. 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 13 years ago
  99. 450bb59 forgotten in f578ca44193d by Benjamin Peterson · 13 years ago
  100. e249841 add a asdl bytes type, so Bytes.s be properly typechecked by Benjamin Peterson · 13 years ago