summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Catch PyUnicode_AS_UNICODE() errorsVictor Stinner2011-11-161-11/+22
* #13406: silence deprecation warnings in test_codecs.Ezio Melotti2011-11-161-1/+1
* Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-9/+7
|\
| * Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-9/+5
* | Sanitize reference management in the utf-8 encoderAntoine Pitrou2011-11-121-5/+4
* | Fix regression on 2-byte wchar_t systems (Windows)Antoine Pitrou2011-11-111-7/+12
* | Avoid crashing because of an unaligned word accessAntoine Pitrou2011-11-111-1/+9
* | Issue #13149: Speed up append-only StringIO objects.Antoine Pitrou2011-11-101-1/+1
* | Fix and deprecated the unicode_internal codecVictor Stinner2011-11-101-6/+22
* | Prefer Py_UCS4 or wchar_t over Py_UNICODEVictor Stinner2011-11-101-8/+7
* | PyUnicode_DecodeCharmap() uses the new Unicode APIVictor Stinner2011-11-101-7/+17
* | Avoid PyUnicode_AS_UNICODE in the UTF-8 encoderVictor Stinner2011-11-101-4/+11
* | Fix "unicode_escape" encoderVictor Stinner2011-11-101-1/+1
* | Fix UTF-7 encoder on WindowsVictor Stinner2011-11-101-6/+4
* | Port encoders from Py_UNICODE API to unicode object API.Martin v. Löwis2011-11-101-188/+187
* | Strip trailing spacesVictor Stinner2011-11-081-4/+4
* | Fix a compiler warning: use unsiged for maxchar in unicode_widen()Victor Stinner2011-11-081-1/+1
* | Fix the code page decoderVictor Stinner2011-11-081-17/+44
* | Fix missing gotoAntoine Pitrou2011-11-081-0/+1
* | Make _PyUnicode_FromId return borrowed references.Martin v. Löwis2011-11-071-1/+0
* | Change decoders to use Unicode API instead of Py_UNICODE.Martin v. Löwis2011-11-081-420/+292
* | Fix gdb/libpython.py for not ready Unicode stringsVictor Stinner2011-11-041-2/+5
* | Replace tabs by spacesVictor Stinner2011-11-041-46/+46
* | Drop Py_UNICODE based encode exceptions.Martin v. Löwis2011-11-041-60/+22
* | Port code page codec to Unicode API.Martin v. Löwis2011-11-041-54/+69
* | Fix a compiler warning in unicode_encode_ucs1()Victor Stinner2011-11-031-1/+1
* | Fix PyUnicode_EncodeCharmap()Victor Stinner2011-11-031-1/+1
* | Replace PyUnicodeObject type by PyObjectVictor Stinner2011-11-031-134/+124
* | Cleanup decode_code_page_stateful() and encode_code_page()Victor Stinner2011-11-031-111/+75
* | Adapt the code page encoder to the new unicode_encode_call_errorhandler()Victor Stinner2011-11-031-34/+50
* | Fix a compile error (apparently Windows only) introduced in 295fdfd4f422Brian Curtin2011-11-021-2/+3
* | Port UCS1 and charmap codecs to new API.Martin v. Löwis2011-11-021-84/+127
* | Introduce PyObject* API for raising encode errors.Martin v. Löwis2011-11-021-3/+49
* | Drop Py_UCS4_ functions. Closes #13246.Martin v. Löwis2011-10-311-10/+90
* | PyUnicode_AsUnicodeCopy() uses PyUnicode_AsUnicodeAndSize() to get directly t...Victor Stinner2011-10-231-4/+4
* | Fix PyUnicode_InternImmortal(): PyUnicode_InternInPlace() may changes *pVictor Stinner2011-10-231-3/+1
* | Cast directly to unsigned char, instead of using Py_CHARMASKVictor Stinner2011-10-231-2/+2
* | Replace PyUnicodeObject* by PyObject* where it was irrevelantVictor Stinner2011-10-231-139/+126
* | Fix data variable in _PyUnicode_Dump() for compact ASCIIVictor Stinner2011-10-231-2/+10
* | Remove last references to the removed Unicode free listVictor Stinner2011-10-231-23/+0
* | PyUnicode_FSDecoder() ensures that the decoded string is readyVictor Stinner2011-10-261-0/+4
* | Fix unicode_subtype_new() on debug buildVictor Stinner2011-10-221-1/+1
* | Remove unused variable.Ezio Melotti2011-10-211-1/+0
* | #12753: Add support for Unicode name aliases and named sequences.Ezio Melotti2011-10-211-1/+1
* | Add consistency check to _PyUnicode_New()Victor Stinner2011-10-181-0/+1
* | Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignoreVictor Stinner2011-10-181-141/+609
* | remove some duplicationBenjamin Peterson2011-10-151-10/+4
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-60/+58
* | Reuse the stringlib in findchar(), and make its signature more convenientAntoine Pitrou2011-10-131-39/+41
* | Optimize unicode_subscript() for step != 1 and ascii stringsVictor Stinner2011-10-121-8/+12