1. 5fd4bd3 avoid casting with this nice macro by Benjamin Peterson · 13 years ago
  2. 2f283c2 Fix my previous commit (r88709) for str.encode(errors=...) by Victor Stinner · 13 years ago
  3. a5c68c3 Issue #8923: cache str.encode() result by Victor Stinner · 13 years ago
  4. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  5. 6d970f4 Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats by Victor Stinner · 13 years ago
  6. e7faec1 Fix my previous commit (r88702): initialize size_tflag in parse_format_flags() by Victor Stinner · 13 years ago
  7. 9686545 Issue #10829: Refactor PyUnicode_FromFormat() by Victor Stinner · 13 years ago
  8. 2512a8b Issue #11246: Fix PyUnicode_FromFormat("%V") by Victor Stinner · 13 years ago
  9. 4001847 PEP 7 conformance changes (whitespace only). by Alexander Belopolsky · 13 years ago
  10. 1d52146 Issue #11303: Added shortcuts for utf8 and latin1 encodings. by Alexander Belopolsky · 13 years ago
  11. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  12. 5ed8b2c Fix PyUnicode_FromFormatV("%c") for non-BMP char by Victor Stinner · 14 years ago
  13. fd34b37 Remove bootstrap code of PyUnicode_AsEncodedString() by Victor Stinner · 14 years ago
  14. b9cc00c Removed unneeded #include by Alexander Belopolsky · 14 years ago
  15. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  16. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  17. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  18. 3b9406b Remove redundant check for PyBytes in unicode_encode. by Georg Brandl · 14 years ago
  19. 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
  20. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  21. d5af0a5 PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() fails by Victor Stinner · 14 years ago
  22. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  23. c911bbf str, bytes, bytearray docstring: remove unnecessary [...] by Victor Stinner · 14 years ago
  24. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  25. 51d2fd9 Added more to docstrings for str.format, format_map, and __format__. by Eric Smith · 14 years ago
  26. 9696088 Issue #10288: The deprecated family of "char"-handling macros by David Malcolm · 14 years ago
  27. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  28. ad15872 Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS X by Victor Stinner · 14 years ago
  29. f933e1a Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of by Victor Stinner · 14 years ago
  30. 9a90900 PyUnicode_FromFormatV(): Fix %A format by Victor Stinner · 14 years ago
  31. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  32. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  33. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  34. 66c221e #9418: first step of moving private string methods to _string module. by Georg Brandl · 14 years ago
  35. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  36. 5593d8a Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace by Victor Stinner · 14 years ago
  37. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  38. 71e91a3 Fix PyUnicode_AsWideCharString(): set *size if size is not NULL by Victor Stinner · 14 years ago
  39. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  40. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  41. d4ac96a use return NULL; it's just as correct by Benjamin Peterson · 14 years ago
  42. 4c7db31 Issue #9738, #9836: Fix refleak introduced by r84704 by Victor Stinner · 14 years ago
  43. 9be0b2e detect non-ascii characters much earlier (plugs ref leak) by Benjamin Peterson · 14 years ago
  44. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  45. 4640860 Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() by Victor Stinner · 14 years ago
  46. 71133ff Create PyUnicode_strdup() function by Victor Stinner · 14 years ago
  47. c4eb765 Create Py_UNICODE_strcat() function by Victor Stinner · 14 years ago
  48. 42cb462 Remove unicode_default_encoding constant by Victor Stinner · 14 years ago
  49. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  50. b0fa831 Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API by Antoine Pitrou · 14 years ago
  51. 8515eae Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use memcpy to convert between the two (as already done when wchar_t is unsigned) by Daniel Stutzbach · 14 years ago
  52. 3119ed7 Fix PyUnicode_EncodeFSDefault() indentation by Victor Stinner · 14 years ago
  53. ef8d95c Issue #9425: Create Py_UNICODE_strncmp() function by Victor Stinner · 14 years ago
  54. 47fcb5b Issue #9542: Create PyUnicode_FSDecoder() function by Victor Stinner · 14 years ago
  55. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  56. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  57. 331ea92 Issue #9425: create Py_UNICODE_strrchr() function by Victor Stinner · 14 years ago
  58. 78eef3de Revert r83395, it introduces test failures and is not necessary anyway since we now have to nul-terminate the string anyway. by Georg Brandl · 14 years ago
  59. bd534f0 #8821: do not rely on Unicode strings being terminated with a \u0000, rather explicitly check range before looking for a second surrogate character. by Georg Brandl · 14 years ago
  60. 8ee604b Use Py_CLEAR(). by Georg Brandl · 14 years ago
  61. 99212f6 Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 14 years ago
  62. e51ee8a Fix the docstrings of the capitalize method. by Senthil Kumaran · 14 years ago
  63. 9bf2b3a Update comment about surrogates. by Ezio Melotti · 14 years ago
  64. 57221d0 Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 14 years ago
  65. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  66. c1897e7 Merged revisions 82248 via svnmerge from by Ezio Melotti · 14 years ago
  67. 554f3f0 Issue #850997: mbcs encoding (Windows only) handles errors argument: strict by Victor Stinner · 14 years ago
  68. 7db923c Silence 'unused variable' gcc warning. Patch by Éric Araujo. by Mark Dickinson · 14 years ago
  69. 313a120 Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode by Victor Stinner · 14 years ago
  70. cc0cfd3 Merged revisions 81907 via svnmerge from by Antoine Pitrou · 14 years ago
  71. 37296e8 Fix r81869: ISO-8859-15 was seen as an alias to ISO-8859-1 by Victor Stinner · 14 years ago
  72. 600d3be Issue #8922: Normalize the encoding name in PyUnicode_AsEncodedString() to by Victor Stinner · 14 years ago
  73. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  74. 59e62db Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for any by Victor Stinner · 14 years ago
  75. b9a20ad PyUnicode_DecodeFSDefaultAndSize() uses surrogateescape error handler by Victor Stinner · 14 years ago
  76. 0ea2a46 Simplify PyUnicode_FSConverter(): remove reference to PyByteArray by Victor Stinner · 14 years ago
  77. a23831f condense condition by Benjamin Peterson · 14 years ago
  78. 445a623 Fix my previous commit (r80382) for wide build (unicodeobject.c) by Victor Stinner · 14 years ago
  79. 31be90b Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing by Victor Stinner · 14 years ago
  80. dcb2403 Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, by Victor Stinner · 14 years ago
  81. 806d8cf Merged revisions 79494,79496 via svnmerge from by Florent Xicluna · 14 years ago
  82. 808fc0a Merged revisions 79278,79280 via svnmerge from by Victor Stinner · 14 years ago
  83. cc47d8c Update a comment with more details. by Gregory P. Smith · 14 years ago
  84. 5b2b242 Merged revisions 77743 via svnmerge from by Ezio Melotti · 15 years ago
  85. f068f94 Merged revisions 77469-77470 via svnmerge from by Antoine Pitrou · 15 years ago
  86. cbfdee3 Merged revisions 77463 via svnmerge from by Antoine Pitrou · 15 years ago
  87. f2c5484 Merged revisions 77461 via svnmerge from by Antoine Pitrou · 15 years ago
  88. 8667a9b Python strings ending with '\0' should not be equivalent to their C counterparts in PyUnicode_CompareWithASCIIString by Benjamin Peterson · 15 years ago
  89. 6ce4a9a Merged revisions 76308 via svnmerge from by Mark Dickinson · 15 years ago
  90. adf6a6c death to compiler warning by Benjamin Peterson · 15 years ago
  91. 495f7b5 Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,75602-75607,75610-75613,75616-75617,75623,75627,75640,75647,75696,75795 via svnmerge from by Georg Brandl · 15 years ago
  92. f38a69f kill merged line by Benjamin Peterson · 15 years ago
  93. 308d637 Merged revisions 74929 via svnmerge from by Benjamin Peterson · 15 years ago
  94. e85bd98 Merged revisions 73871 via svnmerge from by Alexandre Vassalotti · 15 years ago
  95. 84ec8d9 #6373: SystemError in str.encode('latin1', 'surrogateescape') by Amaury Forgeot d'Arc · 15 years ago
  96. c6c3178 Merged revisions 73190,73213,73257-73258,73260,73275,73294 via svnmerge from by Georg Brandl · 15 years ago
  97. 3ad0576 Strengthen the guard. The code doesn't work well with subclasses. by Raymond Hettinger · 15 years ago
  98. c15bdef Issue #6012: Add cleanup support to O& argument parsing. by Martin v. Löwis · 15 years ago
  99. 43c5778 Rename utf8b error handler to surrogateescape. by Martin v. Löwis · 15 years ago
  100. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago