summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
* Added code to correct combining str and unicode in ''.format(). Added test c...Eric Smith2008-02-181-0/+9
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+262
* Fix failing unicode test caused by change to ast.c at r56441Kurt B. Kaiser2007-07-181-3/+3
* Prevent these tests from running on Win64 since they don\'t apply there eitherNeal Norwitz2007-06-111-2/+2
* Prevent expandtabs() on string and unicode objects from causing a segfault whenNeal Norwitz2007-06-091-2/+7
* Standardize on test.test_support.run_unittest() (as opposed to a mix of run_u...Collin Winter2007-04-251-1/+1
* Patch #1541585: fix buffer overrun when performing repr() onNeal Norwitz2006-08-211-0/+4
* Whitespace normalization.Tim Peters2006-05-031-1/+1
* Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.Georg Brandl2006-04-301-13/+4
* Fixed bug #1459029 - unicode reprs were double-escaped.Anthony Baxter2006-03-301-0/+16
* Checkin the test of patch #1400181.Georg Brandl2006-01-201-0/+14
* Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'Hye-Shik Chang2005-12-171-10/+14
* Move registration of the codec search function to the module scopeNeal Norwitz2005-11-241-17/+18
* Change the %s format specifier for str objects so that it returns aNeil Schemenauer2005-08-121-0/+4
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-1/+63
* Move test_bug1001011() to string_tests.MixinStrUnicodeTest so thatWalter Dörwald2004-08-261-1/+2
* SF #989185: Drop unicode.iswide() and unicode.width() and addHye-Shik Chang2004-08-041-2/+1
* Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__().Marc-André Lemburg2004-07-231-0/+8
* Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald)Hye-Shik Chang2004-06-041-21/+2
* Fix typo.Hye-Shik Chang2004-06-041-1/+1
* - SF #962502: Add two more methods for unicode type; width() andHye-Shik Chang2004-06-021-0/+20
* Fix reallocation bug in unicode.translate(): The code was comparingWalter Dörwald2004-02-051-0/+1
* Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr.Jeremy Hylton2003-10-061-0/+7
* Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3.Martin v. Löwis2003-08-051-0/+4
* Consider \U-escapes in raw-unicode-escape. Fixes #444514.Martin v. Löwis2003-05-181-0/+7
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-3/+1
* Change formatchar(), so that u"%c" % 0xffffffff now raisesWalter Dörwald2003-04-021-1/+1
* Remove duplicate test.Walter Dörwald2003-03-311-2/+2
* Fix PyString_Format() so that '%c' % u'a' returns u'a'Walter Dörwald2003-03-311-0/+3
* Port all string tests to PyUnit and share as much testsWalter Dörwald2003-02-211-492/+132
* Add a few tests to test_count() to increase coverage inWalter Dörwald2003-02-101-0/+6
* Fix copy&paste error: call title instead of countWalter Dörwald2003-02-101-1/+1
* Port test_unicode.py to PyUnit and add tests for errorWalter Dörwald2003-01-191-851/+1039
* Add a test that exercises the error handling part ofWalter Dörwald2003-01-081-0/+6