1. 811c2f1 remove "fast-path" for (i)adding strings by Benjamin Peterson · 13 years ago
  2. c759f3e Ooops, avoid a division by zero in unicode_repeat() by Victor Stinner · 13 years ago
  3. d3a83d5 PyUnicode_FromObject() ensures that its output is a ready string by Victor Stinner · 13 years ago
  4. 67ca64c I want a super fast 'a' * n! by Victor Stinner · 13 years ago
  5. 4584a5b PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE() by Victor Stinner · 13 years ago
  6. e9a2935 Fix usage of PyUnicode_READY in unicodeobject.c by Victor Stinner · 13 years ago
  7. 12bab6d Remove private substring() function, reuse public PyUnicode_Substring() by Victor Stinner · 13 years ago
  8. c841e7d Optimize PyUnicode_Copy(): don't recompute maximum character by Victor Stinner · 13 years ago
  9. bec0fda Remove commented code: str+=str is no more super-optimized by Victor Stinner · 13 years ago
  10. 2219e0a PyUnicode_FromObject() reuses PyUnicode_Copy() by Victor Stinner · 13 years ago
  11. 9e5bd6c pyexat uses the new Unicode API by Victor Stinner · 13 years ago
  12. 2a1e926 Fix ResourceWarnings in makeunicodedata.py. by Ezio Melotti · 13 years ago
  13. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  14. b153615 PyUnicode_CopyCharacters() uses exceptions instead of assertions by Victor Stinner · 13 years ago
  15. 1fe99a2 Fix a compiler warning by Victor Stinner · 13 years ago
  16. 1fbcaef Fix array.array('u') constructor by Victor Stinner · 13 years ago
  17. eb5657a posix module catches PyUnicode_AsUnicode() failure by Victor Stinner · 13 years ago
  18. 8dba4e0 array module uses the new Unicode API by Victor Stinner · 13 years ago
  19. f8bb7d0 array module stores the typecode in a char, instead of Py_UNICODE by Victor Stinner · 13 years ago
  20. c806fdc raw_unicode_escape() uses the new Unicode API by Victor Stinner · 13 years ago
  21. 121aab4 Strip trailing spaces of _pickle.c by Victor Stinner · 13 years ago
  22. 6364927 PyLocale_strxfrm() uses the new Unicode API by Victor Stinner · 13 years ago
  23. fe9a861 fileio_init() checks for failure on conversion to Py_UNICODE* by Victor Stinner · 13 years ago
  24. ef17f12 Fix test_codeccallbacks for Windows: check size of wchar_t, not sys.maxunicode by Victor Stinner · 13 years ago
  25. 182d90d Fix test_codecs for Windows: check size of wchar_t, not sys.maxunicode by Victor Stinner · 13 years ago
  26. 734e159 Merge. by Charles-François Natali · 13 years ago
  27. 9624a76 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  28. 5a4a109 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  29. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  30. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  31. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  32. ff1ef07 Re-enable test. by Martin v. Löwis · 13 years ago
  33. 2297066 Port normalization to new API. by Martin v. Löwis · 13 years ago
  34. f0ddadc Rename Py_BUILD_ASSERT to Py_BUILD_ASSERT_EXPR by Victor Stinner · 13 years ago
  35. 573696a pymacro.h: Inline _Py_ARRAY_LENGTH_CHECK() and add http://ccodearchive.net/ by Victor Stinner · 13 years ago
  36. 6f1ba07 Merge heads. by Ezio Melotti · 13 years ago
  37. 397546a Update and reorganize the whatsnew entry for PEP 393. by Ezio Melotti · 13 years ago
  38. 6430fd5 Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE by Victor Stinner · 13 years ago
  39. d9c563e modsupport.c reuses Py_UNICODE_strlen() by Victor Stinner · 13 years ago
  40. 9d3579b Remove now useless redefinition of chr/ord for narrow builds in test_multibytecodec_support.py. by Ezio Melotti · 13 years ago
  41. f7b8cb6 _io.textio: fix character type, use Py_UCS4 instead of Py_UNICODE by Victor Stinner · 13 years ago
  42. 0058b86 _sre: don't use Py_UNICODE anymore by Victor Stinner · 13 years ago
  43. 7d637ab Complete What's New in 3.3 about PEP 393 by Victor Stinner · 13 years ago
  44. f503673 Move UCS4-specific tests with the "normal" tests. by Ezio Melotti · 13 years ago
  45. dfb866d Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an array by Victor Stinner · 13 years ago
  46. 2bdc7f5 Move code related to compile from Python.h to compile.h by Victor Stinner · 13 years ago
  47. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  48. b9dcffb Fix 'c' format of PyUnicode_Format() by Victor Stinner · 13 years ago
  49. c17f540 Oops, fix my previous commit: unicode => to by Victor Stinner · 13 years ago
  50. b15d4d8 PyUnicode_CopyCharacters() marks the string as dirty (reset the hash) by Victor Stinner · 13 years ago
  51. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  52. 7c8c1ea Fix whitespace. by Ezio Melotti · 13 years ago
  53. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  54. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  55. 506f592 Check size of wchar_t using the preprocessor by Victor Stinner · 13 years ago
  56. 73f01c6 PyUnicode_CopyCharacters() initializes overflow by Victor Stinner · 13 years ago
  57. e57b1c0 Mark PyUnicode_FromUCS[124] as private by Victor Stinner · 13 years ago
  58. ff9e50f Oops, fix Py_MIN/Py_MAX case by Victor Stinner · 13 years ago
  59. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  60. fd85c3a fill_number() and format_string_internal() check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  61. dba2dee fill_number() ensures that the 'digits' string is ready by Victor Stinner · 13 years ago
  62. afbaa20 fill_char() can now propagate an error by Victor Stinner · 13 years ago
  63. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  64. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  65. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 13 years ago
  66. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 13 years ago
  67. ee12f44 Add versionadded directive to new API function. by Georg Brandl · 13 years ago
  68. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  69. 5ce1b0d Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODE by Victor Stinner · 13 years ago
  70. e56717c merge heads by Benjamin Peterson · 13 years ago
  71. 19f6260 this isn't fixed on windows yet... by Benjamin Peterson · 13 years ago
  72. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  73. a6e50f5 this test works as expected now by Benjamin Peterson · 13 years ago
  74. e28544a revert unintended change by Benjamin Peterson · 13 years ago
  75. 9c6e6a0 don't check that the first character is XID_Continue by Benjamin Peterson · 13 years ago
  76. d83f226 test_ctypes: Windows is no more a special case by Victor Stinner · 13 years ago
  77. 287eca6 Fix struct sizes. Drop -1, since the resulting string was actually the largest one by Martin v. Löwis · 13 years ago
  78. f02aa65 Use compile() instead of eval(). by Martin v. Löwis · 13 years ago
  79. 0c9fe4d Use eval instead of codecs.lookup to trigger UTF-8 generation. by Martin v. Löwis · 13 years ago
  80. 418170c ACKS for PEP 393. by Martin v. Löwis · 13 years ago
  81. 24fa983 Update for PEP 393. by Martin v. Löwis · 13 years ago
  82. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  83. 48d4949 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  84. b86ecf4 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  85. f0c51fa Fix markup. by Georg Brandl · 13 years ago
  86. 91ef21f merged by Martin v. Löwis · 13 years ago
  87. 6fb4472 Depend setobject.o and dictobject.o on stringlib/eq.h. by Martin v. Löwis · 13 years ago
  88. c7d93b7 Issue #1621: Fix undefined behaviour from signed overflow in datetime module hashes, array and list iterations, and get_integer (stringlib/string_format.h) by Mark Dickinson · 13 years ago
  89. 50203a6 Return +-Py_HUGE_VAL for tgamma(+-0) instead of risking FP exceptions by computing 1.0 / 0.0. by Mark Dickinson · 13 years ago
  90. 36f27c9 Issue #1621: Fix undefined behaviour from signed overflow in get_integer (stringlib/formatter.h) by Mark Dickinson · 13 years ago
  91. dc863dd Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python. by Charles-François Natali · 13 years ago
  92. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 13 years ago
  93. 0390151 Fix typo in comment: _PyHash_Double -> _Py_HashDouble. by Mark Dickinson · 13 years ago
  94. 0d5f6ad Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.splitlines, bytes.splitlines and bytearray.splitlines. by Mark Dickinson · 13 years ago
  95. a61b053 Merge #12973 itertools fix. by Mark Dickinson · 13 years ago
  96. b2f6bc7 Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  97. 3454d52 merge 3.2 by Benjamin Peterson · 13 years ago
  98. adde86d fix compiler compliant about \0 not being an opcode by Benjamin Peterson · 13 years ago
  99. 7ddbf10 disable unused result warnings when possible by Benjamin Peterson · 13 years ago
  100. a1fe1f8 Merge 3.2: Issue #7732: Don't open a directory as a file anymore while by Victor Stinner · 13 years ago