summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-6/+4
* Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-9/+5
* Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null characterVictor Stinner2011-09-061-5/+5
* #9200: The str.is* methods now work with strings that contain non-BMP charact...Ezio Melotti2011-08-221-41/+60
* the named of the character is actually NULBenjamin Peterson2011-08-181-1/+1
* NUL -> NULLBenjamin Peterson2011-08-181-1/+1
* #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ...Ezio Melotti2011-08-151-2/+2
* in narrow builds, make sure to test codepoints as identifier characters (clos...Benjamin Peterson2011-08-131-8/+23
* Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/byt...Senthil Kumaran2011-07-271-2/+2
* 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
* #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
|\ \ | |/
| * 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
| * Merged revisions 83226-83227,83229-83232 via svnmerge fromGeorg Brandl2010-08-011-4/+2
| * Recorded merge of revisions 83444 via svnmerge fromGeorg Brandl2010-08-011-2/+2
| * Merged revisions 83395,83417 via svnmerge fromGeorg Brandl2010-08-011-2/+2
| * Merged revisions 82978 via svnmerge fromStefan Krah2010-07-191-1/+1
| * Merged revisions 82573 via svnmerge fromSenthil Kumaran2010-07-051-1/+1
| * Merged revisions 82413,82468 via svnmerge fromEzio Melotti2010-07-031-56/+56
| * Merged revisions 82252 via svnmerge fromEzio Melotti2010-06-261-1/+1
| * Merged revisions 81908 via svnmerge fromAntoine Pitrou2010-06-111-19/+21
| * Merged revisions 80384 via svnmerge fromVictor Stinner2010-04-221-2/+3
| * Merged revisions 80382 via svnmerge fromVictor Stinner2010-04-221-47/+80
| * Merged revisions 76197 via svnmerge fromVictor Stinner2010-03-231-0/+2
| * Merged revisions 79281 via svnmerge fromVictor Stinner2010-03-221-1/+1
| * Merged revisions 77745 via svnmerge fromEzio Melotti2010-01-251-1/+1
| * Merged revisions 77395 via svnmerge fromBenjamin Peterson2010-01-091-0/+5
| * Merged revisions 75797 via svnmerge fromGeorg Brandl2009-10-271-2/+2
| * Merged revisions 74126,74130-74131,74149,74155,74157,74180-74183,74398 via sv...Georg Brandl2009-08-131-2/+2
| * Merged revisions 73698 via svnmerge fromAmaury Forgeot d'Arc2009-06-291-0/+2
* | Merged revisions 88697 via svnmerge fromVictor Stinner2011-03-011-7/+19
* | Merged revisions 88481 via svnmerge fromVictor Stinner2011-02-231-2/+23
* | Removed unneeded #includeAlexander Belopolsky2010-12-221-2/+0
* | remove (un)transform methodsBenjamin Peterson2010-12-121-44/+1
* | Issue #10557: Fixed error messages from float() and other numericAlexander Belopolsky2010-12-041-2/+33
* | Merge branches/pep-0384.Martin v. Löwis2010-12-031-3/+3
* | Remove redundant check for PyBytes in unicode_encode.Georg Brandl2010-12-031-17/+1
* | #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-021-1/+45
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* | PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() failsVictor Stinner2010-11-081-1/+1
* | PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-3/+20
* | str, bytes, bytearray docstring: remove unnecessary [...]Victor Stinner2010-11-071-1/+1
* | Fix encode/decode method doc of str, bytes, bytearray typesVictor Stinner2010-11-071-3/+3
* | Added more to docstrings for str.format, format_map, and __format__.Eric Smith2010-11-061-3/+5
* | Issue #10288: The deprecated family of "char"-handling macrosDavid Malcolm2010-11-051-10/+10