summaryrefslogtreecommitdiff
path: root/Include/unicodeobject.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()Serhiy Storchaka2017-01-221-2/+2
* Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-271-32/+36
|\
| * Issue #29009: Merge 3.6.Xiang Zhang2016-12-191-32/+36
| |\
| | * Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.Serhiy Storchaka2016-12-061-1/+1
| | |\
| | * | Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-32/+36
* | | | Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-271-0/+18
|/ / /
* | | Issue #29009: Merge 3.5.Xiang Zhang2016-12-191-4/+0
|\ \ \ | |_|/ |/| |
| * | Issue #29009: Remove outdated doc of PyUnicode_RichCompare.Xiang Zhang2016-12-191-4/+0
* | | Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.Serhiy Storchaka2016-12-061-1/+1
|\ \ \ | |/ / | | / | |/ |/|
| * Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.Serhiy Storchaka2016-12-061-1/+1
* | Issue #28701: _PyUnicode_EqualToASCIIId and _PyUnicode_EqualToASCIIString nowSerhiy Storchaka2016-11-161-2/+2
* | 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-32/+75
|\ \ | |/ |/|
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-0/+11
| |\
| * | Issue 28128: Print out better error/warning messages for invalid string escap...Eric V. Smith2016-10-311-0/+11
| * | Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(),Serhiy Storchaka2016-10-271-8/+25
| * | Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4().Serhiy Storchaka2016-10-021-24/+39
| |\ \
| | * \ Issue #28139: Merge indentation fixes from 3.5 into 3.6Martin Panter2016-09-171-1/+1
| | |\ \
| | * | | Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...Christian Heimes2016-09-131-1/+1
| | * | | Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-0/+2
| | * | | simplify Py_UCSN definitions with stdint typesBenjamin Peterson2016-09-081-15/+3
| | * | | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-6/+2
| | * | | Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec ...Steve Dower2016-09-061-1/+1
| | * | | Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-0/+8
| | * | | Merge spelling and grammar fixes from 3.5Martin Panter2016-08-051-1/+1
| | |\ \ \
| | * \ \ \ Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-1/+22
| | |\ \ \ \
| | | * \ \ \ Issue #15984: Merge PyUnicode doc from 3.5Martin Panter2016-04-151-18/+10
| | | |\ \ \ \
| | | * \ \ \ \ Merge typo fixes from 3.5Martin Panter2016-04-051-1/+22
| | | |\ \ \ \ \
| | | | * \ \ \ \ Issue #25523: Merge a-to-an corrections from 3.5.Serhiy Storchaka2015-11-021-2/+2
| | | | |\ \ \ \ \
| | | | * | | | | | Issue #25318: Add _PyBytesWriter APIVictor Stinner2015-10-091-1/+1
| | | | * | | | | | Issue #24870: Add _PyUnicodeWriter_PrepareKind() macroVictor Stinner2015-09-221-0/+17
| | | | * | | | | | Make the unicode equality test an external function rather than in-lining it.Raymond Hettinger2015-07-041-0/+4
* | | | | | | | | | Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-161-0/+19
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-0/+11
|/ / / / / / / /
* | | | | | | | Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4().Serhiy Storchaka2016-10-021-1/+1
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Issue #28139: Fix messed up indentationMartin Panter2016-09-171-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-041-1/+1
|/ / / / /
* | | | | Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
| |_|_|/ |/| | |
* | | | Issue #15984: Correct PyUnicode_FromObject() and _FromEncodedObject() docsMartin Panter2016-04-151-16/+8
* | | | Correct ?an? ? ?a? with ?Unicode?, ?user?, ?UTF?, etcMartin Panter2016-04-151-4/+4
|/ / /
* | | Fix typos in documentation and commentsMartin Panter2016-04-051-1/+1
| |/ |/|
* | Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-6/+2
|\ \ | |/
| * Issue #23908: os functions now reject paths with embedded null characterSerhiy Storchaka2015-04-201-6/+2
| |\
| | * Merge 3.4 (typo)Victor Stinner2015-02-111-1/+1
| | |\ | | |/ | |/|
| | * Issue20284: Implement PEP461Ethan Furman2015-01-231-0/+2
* | | Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-2/+2
|/ /
* | Fix typo: PyMem_Alloc => PyMem_MallocVictor Stinner2015-02-111-1/+1
|/
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
* Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-1/+1
* Issue #19537: Fix PyUnicode_DATA() alignment under m68k. Patch by Andreas Sc...Antoine Pitrou2014-03-231-0/+3