summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* | | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-281-1/+1
* | | Fix 'c' format of PyUnicode_Format()Victor Stinner2011-09-281-1/+1
* | | Oops, fix my previous commit: unicode => toVictor Stinner2011-09-281-2/+2
* | | PyUnicode_CopyCharacters() marks the string as dirty (reset the hash)Victor Stinner2011-09-281-1/+5
* | | PyUnicode_CopyCharacters() fails if 'to' has more than 1 referenceVictor Stinner2011-09-281-0/+8
* | | Clean up a few tabs that went in with PEP393.Ezio Melotti2011-09-281-65/+65
* | | #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-281-1/+2
* | | Check size of wchar_t using the preprocessorVictor Stinner2011-09-281-29/+27
* | | PyUnicode_CopyCharacters() initializes overflowVictor Stinner2011-09-281-0/+1
* | | Mark PyUnicode_FromUCS[124] as privateVictor Stinner2011-09-281-10/+10
* | | Oops, fix Py_MIN/Py_MAX caseVictor Stinner2011-09-281-2/+2
* | | Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as privateVictor Stinner2011-09-281-7/+10
* | | Strip trailing spaces in unicodeobject.[ch]Victor Stinner2011-09-281-10/+10
* | | Check for PyUnicode_CopyCharacters() failureVictor Stinner2011-09-281-41/+79
* | | PyUnicode_CopyCharacters() checks for buffer and character overflowVictor Stinner2011-09-281-82/+77
* | | Mark PyUnicode_CONVERT_BYTES as privateVictor Stinner2011-09-281-10/+25
* | | Rename new macros to conform to naming rules (function macros have "Py" prefi...Georg Brandl2011-09-281-9/+9
* | | don't check that the first character is XID_ContinueBenjamin Peterson2011-09-281-1/+1
* | | Implement PEP 393.Martin v. Löwis2011-09-281-1742/+4054
* | | Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple._...Mark Dickinson2011-09-241-5/+5
* | | Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.spli...Mark Dickinson2011-09-241-3/+5
* | | Merge 3.2: Fix PyUnicode_AsWideCharString() docVictor Stinner2011-09-061-5/+5
|\ \ \ | |/ /
| * | Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null characterVictor Stinner2011-09-061-5/+5
* | | #9200: merge with 3.2.Ezio Melotti2011-08-221-41/+51
|\ \ \ | |/ /
| * | #9200: The str.is* methods now work with strings that contain non-BMP charact...Ezio Melotti2011-08-221-41/+60
* | | merge 3.2Benjamin Peterson2011-08-181-1/+1
|\ \ \ | |/ /
| * | the named of the character is actually NULBenjamin Peterson2011-08-181-1/+1
* | | merge 3.2Benjamin Peterson2011-08-181-1/+1
|\ \ \ | |/ /
| * | NUL -> NULLBenjamin Peterson2011-08-181-1/+1
* | | #12266: merge with 3.2.Ezio Melotti2011-08-151-2/+2
|\ \ \ | |/ /
| * | #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ...Ezio Melotti2011-08-151-2/+2
* | | merge 3.2 (#12732)Benjamin Peterson2011-08-131-8/+23
|\ \ \ | |/ /
| * | in narrow builds, make sure to test codepoints as identifier characters (clos...Benjamin Peterson2011-08-131-8/+23
* | | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-6/+3
* | | merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind met...Senthil Kumaran2011-07-271-2/+2
|\ \ \ | |/ /
| * | Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/byt...Senthil Kumaran2011-07-271-2/+2
* | | Issue #9642: Uniformize the tests on the availability of the mbcs codecVictor Stinner2011-07-041-6/+6
* | | merge from 3.2Senthil Kumaran2011-07-041-3/+1
|\ \ \ | |/ /
| * | Fix closes issue12471 - wrong TypeError message when '%i' format spec was used.Senthil Kumaran2011-07-041-3/+1
| * | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-261-7/+22
* | | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-261-7/+22
* | | #6780: merge with 3.2.Ezio Melotti2011-04-261-3/+10
|\ \ \ | |/ /
| * | #6780: merge with 3.1.Ezio Melotti2011-04-261-3/+10
| |\ \ | | |/
| | * #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-7/+14
* | | MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-19/+16
|\ \ \ | |/ /
| * | MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-19/+16
| |\ \ | | |/
| | * startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-19/+16
| | * Merged revisions 86277 via svnmerge fromEric Smith2010-11-061-2/+3
| | * Merged revisions 81936 via svnmerge fromGeorg Brandl2010-10-171-1/+2
| | * Merged revisions 84394 via svnmerge fromAntoine Pitrou2010-09-011-27/+26