summaryrefslogtreecommitdiff
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* Fix spelling in code commentsMartin Panter2016-12-181-1/+1
* Moved Unicode C API related tests to separate test class.Serhiy Storchaka2016-10-021-5/+7
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-0/+5
* Issue #19543: Added Py3k warning for decoding unicode.Serhiy Storchaka2015-12-031-4/+6
* Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-3/+6
* Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-0/+1
* Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. AnalysisSerhiy Storchaka2015-01-271-0/+40
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-2/+2
* Issue #16056: Rename test methods to avoid conflict.Berker Peksag2014-11-241-1/+1
* Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat().Victor Stinner2014-07-301-0/+112
* Issue #12546: Allow \x00 as a fill character for builtin type __format__ meth...Eric V. Smith2014-04-141-0/+21
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+8
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-5/+5
* Issue #19457: Fixed xmlcharrefreplace tests on wide build when tests areSerhiy Storchaka2013-10-311-2/+2
* Issue #15866: The xmlcharrefreplace error handler no more produces two XMLSerhiy Storchaka2013-08-061-0/+12
* Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-281-0/+27
* Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-0/+25
* Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-4/+12
* #9200: backport tests but run them on wide builds only.Ezio Melotti2011-08-221-2/+185
* #12266: move the tests in test_unicode.Ezio Melotti2011-08-151-0/+19
* #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-0/+11
* Python 2 can encode/decode surrogates to utf-8. Add a test for this.Ezio Melotti2011-02-281-1/+7
* Merged revisions 85861 via svnmerge fromAntoine Pitrou2010-10-271-1/+0
* Strengthen test_unicode with explicit type checking for assertEqual tests.Florent Xicluna2010-09-131-8/+22
* Check PendingDeprecationWarning after issue #7994.Florent Xicluna2010-09-131-4/+7
* Merged revisions 84470-84471,84566-84567,84759 via svnmerge fromFlorent Xicluna2010-09-131-5/+5
* Sub-issue of #9036: Fix incorrect use of Py_CHARMASK.Stefan Krah2010-07-191-0/+1
* use unicode literalsBenjamin Peterson2010-06-071-3/+3
* correctly overflow when indexes are too largeBenjamin Peterson2010-06-071-0/+3
* Add a NEWS entry for r81758 and clarify a comment.Ezio Melotti2010-06-051-3/+3
* Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629.Ezio Melotti2010-06-051-0/+158
* #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the te...Georg Brandl2010-05-241-4/+4
* Fix the NEWS about my last commit: an unicode subclass can now override theVictor Stinner2010-03-221-2/+0
* Issue #1583863: An unicode subclass can now override the __str__ methodVictor Stinner2010-03-221-0/+11
* Issue #7849: Now the utility ``check_warnings`` verifies if the warnings areFlorent Xicluna2010-03-071-2/+1
* Issue #7649: Fix u'%c' % char for character in range 0x80..0xFFVictor Stinner2010-02-231-0/+13
* use assert[Not]In where appropriateEzio Melotti2010-01-231-51/+51
* Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,Antoine Pitrou2010-01-021-1/+4
* Issue #1680159: unicode coercion during an 'in' operation was maskingR. David Murray2009-12-141-1/+3
* add keyword arguments support to str/unicode encode and decode #6300Benjamin Peterson2009-09-181-0/+8
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-63/+63
* Issue 6089: str.format raises SystemError.Eric Smith2009-05-231-0/+4
* Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se...Antoine Pitrou2009-05-041-6/+15
* Unicode format tests weren't actually testing unicode. This was probably due ...Eric Smith2009-03-141-51/+51
* Issue 5237, Allow auto-numbered replacement fields in str.format() strings.Eric Smith2009-03-141-3/+33
* #3601: test_unicode.test_raiseMemError fails in UCS4Antoine Pitrou2008-09-051-1/+4
* #3556: test_raiseMemError consumes an insane amount of memoryAntoine Pitrou2008-08-171-8/+3
* Correct a crash when two successive unicode allocations fail with a MemoryError:Amaury Forgeot d'Arc2008-07-311-0/+14
* #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versionsAntoine Pitrou2008-07-251-0/+3
* #1477: ur'\U0010FFFF' raised in narrow unicode builds.Amaury Forgeot d'Arc2008-03-231-2/+15