summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23803: Fixed str.partition() and str.rpartition() when a separatorSerhiy Storchaka2015-03-291-0/+2
| | | | is wider then partitioned string.
* Added tests for mixed kinds of Unicode strings.Serhiy Storchaka2015-03-241-0/+150
|
* Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-121-47/+9
| | | | Fixed 2 to 3 porting bug in pynche.ColorDB.
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-2/+2
|
* merge 3.3 (#22643)Benjamin Peterson2014-10-151-0/+1
|\
| * test is cpython onlyBenjamin Peterson2014-10-151-0/+1
| |
* | merge 3.3 (#22643)Benjamin Peterson2014-10-151-0/+5
|\ \ | |/
| * fix integer overflow in unicode case operations (closes #22643)Benjamin Peterson2014-10-151-0/+5
| |
* | Issue #12546: Allow \x00 as a fill character for builtin type __format__ ↵Eric V. Smith2014-04-141-0/+21
| | | | | | | | methods.
* | Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+10
|\ \ | |/
| * Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+10
| |
* | Issue19995: fixed typo; switched from test.support.check_warnings to assertWarnsEthan Furman2014-01-121-15/+5
| |
* | Issue19995: issue deprecation warning for non-integer values to %c, %o, %x, %XEthan Furman2014-01-121-5/+15
| |
* | assertEquals is deprecated, use assertEqual instead.Antoine Pitrou2014-01-091-8/+8
| |
* | Issue19995: %o, %x, %X now only accept intsEthan Furman2014-01-051-0/+29
| |
* | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-5/+5
|\ \ | |/
| * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-5/+5
| |
* | merge 3.3 (#19729)Benjamin Peterson2013-11-271-0/+2
|\ \ | |/
| * fix format spec recursive expansion (closes #19729)Benjamin Peterson2013-11-271-0/+1
| |
* | Issue #19668: Added support for the cp1125 encoding.Serhiy Storchaka2013-11-231-2/+2
| |
* | #1097797: Add CP273 codec, and exercise it in the test suiteAndrew Kuchling2013-11-101-2/+2
| |
* | Issue #18780: code cleanup.Ethan Furman2013-08-311-34/+19
| |
* | Close #18780: %-formatting now prints value for int subclasses with %d, %i, ↵Ethan Furman2013-08-311-0/+47
| | | | | | | | and %u codes.
* | Issue #16741: Remove testing of implementation artifact.Serhiy Storchaka2013-08-031-2/+0
|\ \ | |/
| * Issue #16741: Remove testing of implementation artifact.Serhiy Storchaka2013-08-031-2/+0
| |
* | Merge str.center tests from 3.3.Ezio Melotti2013-07-081-0/+9
|\ \ | |/
| * Add a couple of tests for str.center with non-ASCII chars.Ezio Melotti2013-07-081-0/+9
| |
* | Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raiseSerhiy Storchaka2013-06-231-0/+2
|\ \ | |/ | | | | OverflowError when an argument of %c format is out of range.
| * Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raiseSerhiy Storchaka2013-06-231-0/+2
| | | | | | | | OverflowError when an argument of %c format is out of range.
* | Add tests for issue #18183.Serhiy Storchaka2013-06-121-3/+14
|\ \ | |/
| * Add tests for issue #18183.Serhiy Storchaka2013-06-121-3/+15
| |
* | merge 3.3 (#18183)Benjamin Peterson2013-06-101-0/+3
|\ \ | |/
| * remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value ↵Benjamin Peterson2013-06-101-0/+3
| | | | | | | | (see #18183)
* | rewrite the parsing of field names to be more consistent wrt recursive expansionBenjamin Peterson2013-05-171-1/+9
| |
* | merge 3.3Benjamin Peterson2013-05-171-0/+2
|\ \ | |/
| * only recursively expand in the format spec (closes #17644)Benjamin Peterson2013-05-171-0/+2
| |
* | Issue #7330: Implement width and precision (ex: "%5.3s") for the format stringVictor Stinner2013-05-061-54/+175
| | | | | | | | of PyUnicode_FromFormat() function, original patch written by Ysj Ray.
* | Issue #17615: Add tests comparing Unicode strings of different kindsVictor Stinner2013-04-081-0/+85
| | | | | | | | Kinds: ascii, latin, bmp, astral.
* | 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
|\ \ | |/ | | | | character string (wstr) format is now cleared.
| * Issue #17137: When an Unicode string is resized, the internal wide characterVictor Stinner2013-02-071-0/+15
| | | | | | | | string (wstr) format is now cleared.
* | #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
| | | | | | | | test discovery. Patch by Zachary Ware.
* | Issue #9856: Replace deprecation warinigs to raising TypeError in ↵Andrew Svetlov2012-12-231-5/+3
| | | | | | | | | | | | object.__format__ Patch by Florent Xicluna.
* | 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 ↵Ezio Melotti2012-11-041-1/+221
| | | | | | | | characters when used with the "replace" error handler on invalid utf-8 sequences. Patch by Serhiy Storchaka, tests by Ezio Melotti.
* | Issue #14700: merge tests from 3.3.Mark Dickinson2012-10-281-0/+27
|\ \ | |/