summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-9/+12
|\
| * Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-9/+12
| |\
| | * Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-9/+12
* | | Make _PyUnicode_TranslateCharmap() symbol privateVictor Stinner2015-10-011-1/+1
* | | Issue #25267: The UTF-8 encoder is now up to 75 times as fast for errorVictor Stinner2015-10-011-2/+5
* | | Optimize ascii/latin1+surrogateescape encodersVictor Stinner2015-09-291-0/+16
* | | Issue #25227: Cleanup unicode_encode_ucs1() error handlerVictor Stinner2015-09-241-9/+13
* | | Issue #24870: revert unwanted changeVictor Stinner2015-09-221-43/+9
* | | Issue #25207, #14626: Fix my commit.Victor Stinner2015-09-211-9/+43
* | | _PyUnicodeWriter_PrepareInternal(): make the assertion more strictVictor Stinner2015-09-211-1/+2
* | | Issue #24870: Add _PyUnicodeWriter_PrepareKind() macroVictor Stinner2015-09-211-9/+29
* | | Issue #24870: Reuse the new _Py_error_handler enumVictor Stinner2015-09-211-87/+77
* | | Issue #24870: Optimize the ASCII decoder for error handlers: surrogateescape,Victor Stinner2015-09-211-5/+61
* | | Closes #21279: Merge with 3.5Zachary Ware2015-08-061-5/+6
|\ \ \ | |/ /
| * | Issue #21279: Merge with 3.4Zachary Ware2015-08-061-5/+6
| |\ \ | | |/
| | * Issue #21279: Flesh out str.translate docsZachary Ware2015-08-061-5/+6
* | | Make the unicode equality test an external function rather than in-lining it.Raymond Hettinger2015-07-041-0/+7
|/ /
* | Issue #24284: The startswith and endswith methods of the str class no longerSerhiy Storchaka2015-05-311-3/+3
* | Fix some compilation warnings when using gcc (-Wmaybe-uninitialized).Antoine Pitrou2015-05-191-3/+3
|\ \ | |/
| * Fix some compilation warnings when using gcc (-Wmaybe-uninitialized).Antoine Pitrou2015-05-191-17/+17
* | Issue #15027: The UTF-32 encoder is now 3x to 7x faster.Serhiy Storchaka2015-05-121-61/+41
* | Issue #23908: os functions now reject paths with embedded null characterSerhiy Storchaka2015-04-201-15/+0
|\ \ | |/
| * Issue #23803: Fixed str.partition() and str.rpartition() when a separatorSerhiy Storchaka2015-03-291-5/+5
| * merge 3.3 (#23362)Benjamin Peterson2015-03-021-1/+1
| |\
| | * use PyMem_NEW to detect overflow (closes #23362)Benjamin Peterson2015-03-021-1/+1
| | * Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. AnalysisSerhiy Storchaka2015-01-271-0/+2
* | | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-39/+3
* | | _PyUnicodeWriter_WriteStr() now checks that the input string is consistentVictor Stinner2015-03-261-0/+1
* | | Issue #23573: Increased performance of string search operations (str.find,Serhiy Storchaka2015-03-241-152/+192
* | | Fix compiler warnings: comparison between signed and unsigned numbersVictor Stinner2015-03-201-1/+1
* | | Initialize variables to prevent GCC warningsVictor Stinner2015-03-181-15/+20
* | | Issue #23451: Update pyconfig.h for Windows to require Vista headers and remo...Steve Dower2015-03-021-18/+1
* | | Issue #23490: Fixed possible crashes related to interoperability betweenSerhiy Storchaka2015-02-201-0/+9
|\ \ \ | |/ /
| * | Issue #23490: Fixed possible crashes related to interoperability betweenSerhiy Storchaka2015-02-201-0/+9
* | | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-17/+5
|\ \ \ | |/ /
| * | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-17/+5
* | | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() andVictor Stinner2015-01-261-4/+5