summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #27454: Use PyDict_SetDefault in PyUnicode_InternInPlaceBerker Peksag2016-07-251-14/+6
* Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-181-1/+7
|\
| * Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-181-1/+7
* | Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-021-1/+1
|\ \ | |/
| * Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-021-1/+1
* | Issue #26765: Moved common code and docstrings for bytes and bytearray methodsSerhiy Storchaka2016-05-041-10/+24
* | Issue #15984: Merge PyUnicode doc from 3.5Martin Panter2016-04-151-1/+1
|\ \ | |/
| * Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
* | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka2016-04-131-399/+163
* | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-4/+4
|\ \ | |/
| * Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-4/+4
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-4/+4
|\ \ | |/
| * Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-4/+4
* | Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+1
|\ \ | |/
| * Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+1
* | Merge 3.5Victor Stinner2016-03-011-9/+12
|\ \ | |/
| * Issue #26464: Fix unicode_fast_translate() againVictor Stinner2016-03-011-9/+12
* | Merge 3.5Victor Stinner2016-03-011-3/+4
|\ \ | |/
| * Fix str.translate()Victor Stinner2016-03-011-3/+4
* | Merge 3.5Victor Stinner2016-01-271-0/+2
|\ \ | |/
| * Fix resize_compact()Victor Stinner2016-01-271-0/+2
* | Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-1/+1
|\ \ | |/
| * Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-1/+1
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-3/+3
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-6/+6
* | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-8/+4
|\ \ | |/
| * Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-8/+4
* | Issues #25890, #25891, #25892: Removed unused variables in Windows code.Serhiy Storchaka2015-12-181-1/+0
* | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
|\ \ | |/
| * Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
| |\
| | * Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
* | | merge 3.5 (#25630)Benjamin Peterson2015-11-161-0/+1
|\ \ \ | |/ /
| * | make the PyUnicode_FSConverter cleanup set the decrefed argument to NULL (clo...Benjamin Peterson2015-11-161-0/+1
* | | Issue #24821: Refactor STRINGLIB(fastsearch_memchr_1char) and split it onSerhiy Storchaka2015-11-141-17/+16
* | | Issue #25523: Merge a-to-an corrections from 3.5.Serhiy Storchaka2015-11-021-2/+2
|\ \ \ | |/ /
| * | Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-2/+2
| |\ \ | | |/
| | * Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-2/+2
* | | Issue #25353: Optimize unicode escape and raw unicode escape encoders to useVictor Stinner2015-10-121-44/+69
* | | Writer APIs: use empty string singletonsVictor Stinner2015-10-121-9/+18
* | | Optimize error handlers of ASCII and Latin1 encoders when the replacementVictor Stinner2015-10-091-32/+40
* | | Add _PyBytesWriter_WriteBytes() to factorize the codeVictor Stinner2015-10-091-5/+3
* | | _PyBytesWriter: simplify code to avoid "prealloc" parametersVictor Stinner2015-10-091-30/+28
* | | Issue #25318: Fix backslashreplace()Victor Stinner2015-10-091-1/+1
* | | Issue #25318: Avoid sprintf() in backslashreplace()Victor Stinner2015-10-091-7/+18
* | | Issue #25318: Move _PyBytesWriter to bytesobject.cVictor Stinner2015-10-081-210/+0
* | | Optimize backslashreplace error handlerVictor Stinner2015-10-081-49/+144
* | | Issue #25318: Add _PyBytesWriter APIVictor Stinner2015-10-081-69/+247
* | | Issue #25301: Fix compatibility with ISO C90Victor Stinner2015-10-051-1/+5
* | | Issue #25301: The UTF-8 decoder is now up to 15 times as fast for errorVictor Stinner2015-10-051-9/+39
* | | Fix _PyUnicodeWriter_PrepareKind()Victor Stinner2015-10-021-7/+18