| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix the docstrings of the capitalize method. | Senthil Kumaran | 2010-07-05 | 1 | -1/+1 |
|
|
* | Update comment about surrogates. | Ezio Melotti | 2010-07-03 | 1 | -5/+5 |
|
|
* | Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. | Ezio Melotti | 2010-07-01 | 1 | -56/+56 |
|
|
* | #9078: fix some Unicode C API descriptions, in comments and docs. | Georg Brandl | 2010-06-27 | 1 | -1/+1 |
|
|
* | Merged revisions 82248 via svnmerge from | Ezio Melotti | 2010-06-26 | 1 | -1/+1 |
|
|
* | Issue #850997: mbcs encoding (Windows only) handles errors argument: strict | Victor Stinner | 2010-06-16 | 1 | -38/+125 |
|
|
* | Silence 'unused variable' gcc warning. Patch by Éric Araujo. | Mark Dickinson | 2010-06-12 | 1 | -1/+2 |
|
|
* | Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode | Victor Stinner | 2010-06-11 | 1 | -4/+10 |
|
|
* | Merged revisions 81907 via svnmerge from | Antoine Pitrou | 2010-06-11 | 1 | -19/+21 |
|
|
* | Fix r81869: ISO-8859-15 was seen as an alias to ISO-8859-1 | Victor Stinner | 2010-06-10 | 1 | -39/+45 |
|
|
* | Issue #8922: Normalize the encoding name in PyUnicode_AsEncodedString() to | Victor Stinner | 2010-06-10 | 1 | -18/+31 |
|
|
* | Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode | Victor Stinner | 2010-05-15 | 1 | -3/+13 |
|
|
* | Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for any | Victor Stinner | 2010-05-15 | 1 | -23/+31 |
|
|
* | PyUnicode_DecodeFSDefaultAndSize() uses surrogateescape error handler | Victor Stinner | 2010-04-30 | 1 | -4/+4 |
|
|
* | Simplify PyUnicode_FSConverter(): remove reference to PyByteArray | Victor Stinner | 2010-04-30 | 1 | -9/+3 |
|
|
* | condense condition | Benjamin Peterson | 2010-04-25 | 1 | -4/+1 |
|
|
* | Fix my previous commit (r80382) for wide build (unicodeobject.c) | Victor Stinner | 2010-04-22 | 1 | -2/+3 |
|
|
* | Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing | Victor Stinner | 2010-04-22 | 1 | -47/+80 |
|
|
* | Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, | Victor Stinner | 2010-04-22 | 1 | -1/+1 |
|
|
* | Merged revisions 79494,79496 via svnmerge from | Florent Xicluna | 2010-03-30 | 1 | -3/+5 |
|
|
* | Merged revisions 79278,79280 via svnmerge from | Victor Stinner | 2010-03-22 | 1 | -1/+1 |
|
|
* | Update a comment with more details. | Gregory P. Smith | 2010-02-27 | 1 | -1/+2 |
|
|
* | Merged revisions 77743 via svnmerge from | Ezio Melotti | 2010-01-25 | 1 | -1/+1 |
|
|
* | Merged revisions 77469-77470 via svnmerge from | Antoine Pitrou | 2010-01-13 | 1 | -3/+13 |
|
|
* | Merged revisions 77463 via svnmerge from | Antoine Pitrou | 2010-01-13 | 1 | -1/+1 |
|
|
* | Merged revisions 77461 via svnmerge from | Antoine Pitrou | 2010-01-13 | 1 | -347/+73 |
|
|
* | Python strings ending with '\0' should not be equivalent to their C counterpa... | Benjamin Peterson | 2010-01-09 | 1 | -0/+5 |
|
|
* | Merged revisions 76308 via svnmerge from | Mark Dickinson | 2009-11-16 | 1 | -23/+90 |
|
|
* | death to compiler warning | Benjamin Peterson | 2009-11-10 | 1 | -0/+2 |
|
|
* | Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,... | Georg Brandl | 2009-10-27 | 1 | -2/+2 |
|
|
* | kill merged line | Benjamin Peterson | 2009-09-18 | 1 | -1/+0 |
|
|
* | Merged revisions 74929 via svnmerge from | Benjamin Peterson | 2009-09-18 | 1 | -3/+6 |
|
|
* | Merged revisions 73871 via svnmerge from | Alexandre Vassalotti | 2009-07-21 | 1 | -2/+2 |
|
|
* | #6373: SystemError in str.encode('latin1', 'surrogateescape') | Amaury Forgeot d'Arc | 2009-06-29 | 1 | -0/+2 |
|
|
* | Merged revisions 73190,73213,73257-73258,73260,73275,73294 via svnmerge from | Georg Brandl | 2009-06-08 | 1 | -1/+1 |
|
|
* | Strengthen the guard. The code doesn't work well with subclasses. | Raymond Hettinger | 2009-05-29 | 1 | -1/+1 |
|
|
* | Issue #6012: Add cleanup support to O& argument parsing. | Martin v. Löwis | 2009-05-29 | 1 | -1/+5 |
|
|
* | Rename utf8b error handler to surrogateescape. | Martin v. Löwis | 2009-05-10 | 1 | -1/+1 |
|
|
* | add a replacement API for PyCObject, PyCapsule #5630 | Benjamin Peterson | 2009-05-05 | 1 | -10/+1 |
|
|
* | Merged revisions 72326 via svnmerge from | Georg Brandl | 2009-05-05 | 1 | -1/+1 |
|
|
* | Issue #5915: Implement PEP 383, Non-decodable Bytes in | Martin v. Löwis | 2009-05-05 | 1 | -9/+80 |
|
|
* | Merged revisions 72283-72284 via svnmerge from | Antoine Pitrou | 2009-05-04 | 1 | -181/+244 |
|
|
* | Merged revisions 72260 via svnmerge from | Walter Dörwald | 2009-05-03 | 1 | -49/+33 |
|
|
* | Issue #3672: Reject surrogates in utf-8 codec; add surrogates error | Martin v. Löwis | 2009-05-02 | 1 | -11/+72 |
|
|
* | Issue #5859: Remove '%f' to '%g' formatting switch for large floats. | Mark Dickinson | 2009-05-01 | 1 | -3/+0 |
|
|
* | Issue #5859: Remove use of fixed-length buffers for float formatting | Mark Dickinson | 2009-05-01 | 1 | -66/+18 |
|
|
* | The other half of Issue #1580: use short float repr where possible. | Eric Smith | 2009-04-16 | 1 | -137/+33 |
|
|
* | #5708: a bit of streamlining in unicode_repeat(). | Georg Brandl | 2009-04-12 | 1 | -9/+8 |
|
|
* | Added ',' thousands grouping to int.__format__. See PEP 378. | Eric Smith | 2009-04-03 | 1 | -0/+1 |
|
|
* | Merged revisions 70682,70684 via svnmerge from | Mark Dickinson | 2009-03-29 | 1 | -0/+9 |
|
|