summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #9542: Create PyUnicode_FSDecoder() functionVictor Stinner2010-08-131-3/+41
* Issue #9425: Create PyErr_WarnFormat() functionVictor Stinner2010-08-131-7/+8
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-9/+1
* Issue #9425: create Py_UNICODE_strrchr() functionVictor Stinner2010-08-101-0/+13
* Revert r83395, it introduces test failures and is not necessary anyway since ...Georg Brandl2010-08-011-2/+2
* #8821: do not rely on Unicode strings being terminated with a \u0000, rather ...Georg Brandl2010-08-011-2/+2
* Use Py_CLEAR().Georg Brandl2010-07-291-4/+2
* Sub-issue of #9036: Fix incorrect use of Py_CHARMASK.Stefan Krah2010-07-191-1/+1
* Fix the docstrings of the capitalize method.Senthil Kumaran2010-07-051-1/+1
* Update comment about surrogates.Ezio Melotti2010-07-031-5/+5
* Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629.Ezio Melotti2010-07-011-56/+56
* #9078: fix some Unicode C API descriptions, in comments and docs.Georg Brandl2010-06-271-1/+1
* Merged revisions 82248 via svnmerge fromEzio Melotti2010-06-261-1/+1
* Issue #850997: mbcs encoding (Windows only) handles errors argument: strictVictor Stinner2010-06-161-38/+125
* Silence 'unused variable' gcc warning. Patch by Éric Araujo.Mark Dickinson2010-06-121-1/+2
* Issue #8969: On Windows, use mbcs codec in strict mode to encode and decodeVictor Stinner2010-06-111-4/+10
* Merged revisions 81907 via svnmerge fromAntoine Pitrou2010-06-111-19/+21
* Fix r81869: ISO-8859-15 was seen as an alias to ISO-8859-1Victor Stinner2010-06-101-39/+45
* Issue #8922: Normalize the encoding name in PyUnicode_AsEncodedString() toVictor Stinner2010-06-101-18/+31
* Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a UnicodeVictor Stinner2010-05-151-3/+13
* Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for anyVictor Stinner2010-05-151-23/+31
* PyUnicode_DecodeFSDefaultAndSize() uses surrogateescape error handlerVictor Stinner2010-04-301-4/+4
* Simplify PyUnicode_FSConverter(): remove reference to PyByteArrayVictor Stinner2010-04-301-9/+3
* condense conditionBenjamin Peterson2010-04-251-4/+1
* Fix my previous commit (r80382) for wide build (unicodeobject.c)Victor Stinner2010-04-221-2/+3
* Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producingVictor Stinner2010-04-221-47/+80
* Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,Victor Stinner2010-04-221-1/+1
* Merged revisions 79494,79496 via svnmerge fromFlorent Xicluna2010-03-301-3/+5
* Merged revisions 79278,79280 via svnmerge fromVictor Stinner2010-03-221-1/+1
* Update a comment with more details.Gregory P. Smith2010-02-271-1/+2
* Merged revisions 77743 via svnmerge fromEzio Melotti2010-01-251-1/+1
* Merged revisions 77469-77470 via svnmerge fromAntoine Pitrou2010-01-131-3/+13
* Merged revisions 77463 via svnmerge fromAntoine Pitrou2010-01-131-1/+1
* Merged revisions 77461 via svnmerge fromAntoine Pitrou2010-01-131-347/+73
* Python strings ending with '\0' should not be equivalent to their C counterpa...Benjamin Peterson2010-01-091-0/+5
* Merged revisions 76308 via svnmerge fromMark Dickinson2009-11-161-23/+90
* death to compiler warningBenjamin Peterson2009-11-101-0/+2
* Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,...Georg Brandl2009-10-271-2/+2
* kill merged lineBenjamin Peterson2009-09-181-1/+0
* Merged revisions 74929 via svnmerge fromBenjamin Peterson2009-09-181-3/+6
* Merged revisions 73871 via svnmerge fromAlexandre Vassalotti2009-07-211-2/+2
* #6373: SystemError in str.encode('latin1', 'surrogateescape')Amaury Forgeot d'Arc2009-06-291-0/+2
* Merged revisions 73190,73213,73257-73258,73260,73275,73294 via svnmerge fromGeorg Brandl2009-06-081-1/+1
* Strengthen the guard. The code doesn't work well with subclasses.Raymond Hettinger2009-05-291-1/+1
* Issue #6012: Add cleanup support to O& argument parsing.Martin v. Löwis2009-05-291-1/+5
* Rename utf8b error handler to surrogateescape.Martin v. Löwis2009-05-101-1/+1
* add a replacement API for PyCObject, PyCapsule #5630Benjamin Peterson2009-05-051-10/+1
* Merged revisions 72326 via svnmerge fromGeorg Brandl2009-05-051-1/+1
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-051-9/+80
* Merged revisions 72283-72284 via svnmerge fromAntoine Pitrou2009-05-041-181/+244