summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* add str.casefold() (closes #13752)Benjamin Peterson2012-01-141-0/+8
* use full unicode mappings for upper/lower/title case (#12736)Benjamin Peterson2012-01-111-0/+44
* Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlersVictor Stinner2011-11-251-14/+4
* (Merge 3.2) Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-0/+6
* Add a test on str.__getnewargs__()Victor Stinner2011-11-221-0/+7
* Rewrite PyUnicode_EncodeDecimal() to use the new Unicode APIVictor Stinner2011-11-211-0/+30
* "unicode_internal" codec has been deprecated: fix related testsVictor Stinner2011-11-151-7/+15
* Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-4/+12
|\
| * Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-4/+12
* | Fix range in test.Ezio Melotti2011-11-111-1/+1
* | Make test more inclusiveAntoine Pitrou2011-11-111-6/+4
* | Enable commented out testAntoine Pitrou2011-11-111-1/+1
* | Issue #13134: optimize finding single-character strings using memchrAntoine Pitrou2011-10-111-0/+17
* | test_unicode was forgetting to run the common string tests for str.find()Antoine Pitrou2011-10-081-0/+1
|\ \ | |/
| * test_unicode was forgetting to run the common string tests for str.find()Antoine Pitrou2011-10-081-0/+1
* | Mark 'abc'.expandtab() optimization as specific to CPythonVictor Stinner2011-10-071-3/+4
* | str.replace(a, a) is now returning str unchanged if a is aVictor Stinner2011-10-071-0/+6
* | #13054: fix usage of sys.maxunicode after PEP-393.Ezio Melotti2011-10-041-16/+4
* | When expandtabs() would be a no-op, don't create a duplicate stringAntoine Pitrou2011-10-041-0/+4
* | Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_tVictor Stinner2011-10-011-4/+7
* | remove "fast-path" for (i)adding stringsBenjamin Peterson2011-10-011-0/+12
* | Fix struct sizes. Drop -1, since the resulting string was actually the larges...Martin v. Löwis2011-09-281-6/+7
* | Implement PEP 393.Martin v. Löwis2011-09-281-14/+27
* | Merge indentation fix and skip decorator with 3.2.Ezio Melotti2011-08-221-24/+28
|\ \ | |/
| * Fix indentation and add a skip decorator.Ezio Melotti2011-08-221-24/+28
* | #9200: merge with 3.2.Ezio Melotti2011-08-221-1/+157
|\ \ | |/
| * #9200: The str.is* methods now work with strings that contain non-BMP charact...Ezio Melotti2011-08-221-1/+157
* | merge 3.2 (#12732)Benjamin Peterson2011-08-131-0/+1
|\ \ | |/
| * in narrow builds, make sure to test codepoints as identifier characters (clos...Benjamin Peterson2011-08-131-0/+1
* | Merge from 3.2.Eric V. Smith2011-07-181-0/+5
|\ \ | |/
| * Closes #12579. Positional fields with str.format_map() now raise a ValueError...Eric V. Smith2011-07-181-0/+5
* | merge from 3.2Senthil Kumaran2011-07-041-0/+1
|\ \ | |/
| * Fix closes issue12471 - wrong TypeError message when '%i' format spec was used.Senthil Kumaran2011-07-041-0/+1
* | #6780: merge with 3.2.Ezio Melotti2011-04-261-0/+8
|\ \ | |/
| * #6780: merge with 3.1.Ezio Melotti2011-04-261-0/+8
| |\
| | * #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-0/+11
| | * Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-3/+3
| | * Merged revisions 85861 via svnmerge fromAntoine Pitrou2010-10-271-3/+2
| | * Merged revisions 83966 via svnmerge fromEric Smith2010-08-131-5/+0
| | * Merged revisions 82978 via svnmerge fromStefan Krah2010-07-191-0/+1
| | * Merged revisions 82413,82468 via svnmerge fromEzio Melotti2010-07-031-0/+153
| | * Merged revisions 81823,81835 via svnmerge fromBenjamin Peterson2010-06-081-0/+3
| | * Merged revisions 79281 via svnmerge fromVictor Stinner2010-03-221-0/+8
| | * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-38/+38
| * | Merged revisions 88697 via svnmerge fromVictor Stinner2011-03-011-0/+13
| * | Merged revisions 88481 via svnmerge fromVictor Stinner2011-02-231-1/+4
* | | Issue 9856: Change object.__format__ with a non-empty format string from a Pe...Eric V. Smith2011-03-121-1/+1
* | | Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formatsVictor Stinner2011-03-021-11/+28
* | | Issue #10829: Refactor PyUnicode_FromFormat()Victor Stinner2011-03-011-0/+19
* | | Issue #11246: Fix PyUnicode_FromFormat("%V")Victor Stinner2011-03-011-0/+13