summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #29145: Merge 3.5.Xiang Zhang2017-01-101-6/+8
|\
| * Issue #29145: Fix overflow checks in str.replace() and str.join().Xiang Zhang2017-01-101-6/+8
* | Issue #29044: Merge 3.5.Xiang Zhang2016-12-221-1194/+1292
|\ \ | |/ |/|
| * Issue #26919: On Android, operating system data is now always encoded/decodedXavier de Gaye2016-12-151-3/+3
| * Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.Serhiy Storchaka2016-12-061-2/+16
| |\
| * | Issue #28760: Clean up and fix comments in PyUnicode_AsUnicodeEscapeString().Serhiy Storchaka2016-11-211-10/+4
| * | Issue #28701: _PyUnicode_EqualToASCIIId and _PyUnicode_EqualToASCIIString nowSerhiy Storchaka2016-11-161-0/+11
| * | Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701).Serhiy Storchaka2016-11-161-1/+1
| |\ \
| * | | Issue #21449: Removed private function _PyUnicode_CompareWithId.Serhiy Storchaka2016-11-161-9/+0
| * | | Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-161-1177/+1279
| |\ \ \
| | * \ \ Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-0/+35
| | |\ \ \
| | * \ \ \ Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS XSerhiy Storchaka2016-11-121-1/+1
| | |\ \ \ \
| | * | | | | Closes #27781: Removes special cases for the experimental aspect of PEP 529Steve Dower2016-11-061-10/+1
| | * | | | | Issue 28128: Print out better error/warning messages for invalid string escap...Eric V. Smith2016-10-311-6/+32
| | * | | | | Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(),Serhiy Storchaka2016-10-271-0/+21
| | * | | | | Issue #28408: Fixed a leak and remove redundant code in _PyUnicodeWriter_Fini...Serhiy Storchaka2016-10-251-18/+12
| | * | | | | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug b...Serhiy Storchaka2016-10-251-1175/+1245
| | |\ \ \ \ \
| | | * | | | | Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raisingSerhiy Storchaka2016-10-211-5/+2
| | | * | | | | merge 3.5 (#28454)Benjamin Peterson2016-10-161-1175/+1248
| | | |\ \ \ \ \
| | | | * | | | | Fix _Py_normalize_encoding() commandVictor Stinner2016-10-121-3/+3
| | | | * | | | | va_end vargs2 once (closes #28417)Benjamin Peterson2016-10-111-1/+0
| | | | * | | | | Merge from 3.5.Serhiy Storchaka2016-10-081-3/+7
| | | | |\ \ \ \ \
| | | | * \ \ \ \ \ Merge 3.5Victor Stinner2016-09-211-1/+1
| | | | |\ \ \ \ \ \
| | | | * | | | | | | va_end() all va_copy()ed va_lists.Christian Heimes2016-09-211-0/+3
| | | | * | | | | | | replace usage of Py_VA_COPY with the (C99) standard va_copyBenjamin Peterson2016-09-201-3/+2
| | | | * | | | | | | Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...Christian Heimes2016-09-131-16/+16
| | | | * | | | | | | remove all usage of Py_LOCALBenjamin Peterson2016-09-091-1/+1
| | | | * | | | | | | #27364: Deprecate invalid escape strings in str/byutes.R David Murray2016-09-081-0/+3
| | | | * | | | | | | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-19/+27
| | | | * | | | | | | more PY_LONG_LONG to long longBenjamin Peterson2016-09-081-2/+2
| | | | * | | | | | | replace some Py_LOCAL_INLINE with the inline keywordBenjamin Peterson2016-09-071-9/+10
| | | | * | | | | | | merge 3.5Benjamin Peterson2016-09-061-3/+3
| | | | |\ \ \ \ \ \ \
| | | | * | | | | | | | Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder().Brett Cannon2016-09-061-14/+37
| | | | * | | | | | | | Optimize unicode_escape and raw_unicode_escapeVictor Stinner2016-09-061-374/+314
| | | | * | | | | | | | _PyUnicodeWriter: assert that max character <= MAX_UNICODEVictor Stinner2016-09-061-0/+3
| | | | * | | | | | | | Issue #26027: Support path-like objects in PyUnicode-FSConverter().Brett Cannon2016-09-061-12/+13
| | | | * | | | | | | | replace Python aliases for standard integer types with the standard integer t...Benjamin Peterson2016-09-061-4/+4
| | | | * | | | | | | | Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-18/+24
| | | | * | | | | | | | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-2/+2
| | | | * | | | | | | | require a long long data type (closes #27961)Benjamin Peterson2016-09-051-6/+0
| | | | * | | | | | | | Issue #27938: Add a fast-path for us-ascii encodingVictor Stinner2016-09-051-56/+110
| | | | * | | | | | | | PEP 7 style for if/else in CVictor Stinner2016-09-021-16/+32
| | | | * | | | | | | | Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-301-7/+7
| | | | * | | | | | | | Issue #26754: Undocumented support of general bytes-like objectsSerhiy Storchaka2016-08-061-6/+7
| | | | * | | | | | | | 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 #27171: Merge typo fixes from 3.5Martin Panter2016-06-021-710/+740
| | | | |\ \ \ \ \ \ \ \ \
| | | | | * | | | | | | | | 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
| | | | | |\ \ \ \ \ \ \ \ \
| | | | | * | | | | | | | | | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka2016-04-131-399/+163