summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #17615: Add tests comparing Unicode strings of different kindsVictor Stinner2013-04-081-0/+85
* Merge DeprecationWarnings silencing in test_unicode from 3.3.Ezio Melotti2013-02-201-9/+11
|\
| * Silence DeprecationWarnings in test_unicode.Ezio Melotti2013-02-201-9/+11
* | (Merge 3.3) Issue #17137: When an Unicode string is resized, the internal wideVictor Stinner2013-02-071-0/+15
|\ \ | |/
| * Issue #17137: When an Unicode string is resized, the internal wide characterVictor Stinner2013-02-071-0/+15
* | #16910: merge with 3.3.Ezio Melotti2013-01-101-5/+3
|\ \ | |/
| * #16910: test_bytes, test_unicode, and test_userstring now work with unittest ...Ezio Melotti2013-01-101-5/+3
* | Issue #9856: Replace deprecation warinigs to raising TypeError in object.__fo...Andrew Svetlov2012-12-231-5/+3
* | Merge from 3.3: Improve str() and object.__str__() docs (issue #13538).Chris Jerdonek2012-11-211-0/+20
|\ \ | |/
| * Improve str() and object.__str__() documentation (issue #13538).Chris Jerdonek2012-11-211-0/+20
* | #8271: merge with 3.3.Ezio Melotti2012-11-041-1/+221
|\ \ | |/
| * #8271: the utf-8 decoder now outputs the correct number of U+FFFD characters...Ezio Melotti2012-11-041-1/+221
* | Issue #14700: merge tests from 3.3.Mark Dickinson2012-10-281-0/+27
|\ \ | |/
| * Issue #14700: merge tests from 3.2.Mark Dickinson2012-10-281-0/+27
| |\
| | * Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-281-0/+27
* | | Issue #16147: PyUnicode_FromFormatV() doesn't need anymore to allocate a bufferVictor Stinner2012-10-061-2/+12
* | | Issue #16147: Rewrite PyUnicode_FromFormatV() to use _PyUnicodeWriter APIVictor Stinner2012-10-061-0/+16
|/ /
* | add another testcaseBenjamin Peterson2012-08-051-0/+1
* | Remove a now worthless test.Brett Cannon2012-05-121-8/+0
* | unicode_writer_finish() checks string consistencyVictor Stinner2012-05-091-0/+4
* | Close #14648: Compute correctly maxchar in str.format() for substrinVictor Stinner2012-04-231-2/+8
* | inherit maxchar of field value where needed (closes #14648)Benjamin Peterson2012-04-231-0/+2
* | str.format_map tests don't do what they say: fix to actually implement the in...Eric V. Smith2012-03-121-6/+9
|\ \ | |/
| * str.format_map tests don't do what they say: fix to actually implement the in...Eric V. Smith2012-03-121-6/+9
| * Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-0/+36
* | 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