summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-151-0/+13
* Merged revisions 56443-56466 via svnmerge fromGuido van Rossum2007-07-201-4/+3
* Make test_unicode pass after the lexer was fixed to turn unicode errorsGuido van Rossum2007-07-181-3/+4
* Fix some tests by deleting stuff.Guido van Rossum2007-06-141-1/+1
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-3/+8
* There's no longer a u prefix for unicode objectsWalter Dörwald2007-05-111-6/+6
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-7/+8
* test_unicode.py passes again 9except for problemsWalter Dörwald2007-05-051-102/+66
* Fix various spots where int/long and str/unicode unificationWalter Dörwald2007-05-031-22/+18
* Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.Guido van Rossum2007-05-031-5/+5
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-327/+327
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+1
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-4/+4
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-9/+9
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+3
* Make the it_index field in the str/unicode iterators Py_ssize_t's.Guido van Rossum2006-08-171-0/+8
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-12/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-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
* Patch for bug #659709: bogus computation of float lengthMarc-André Lemburg2002-12-291-0/+25
* check for unicode.__mod__Neil Schemenauer2002-11-181-0/+1
* Fix for bug #626172: crash using unicode latin1 single charMarc-André Lemburg2002-10-231-0/+6
* Don't test whether surrogate sequences round-trip in UTF-8. 2.2.2 candidate.Martin v. Löwis2002-09-141-1/+4
* Use integer above sys.maxunicode for range test. Fixes #608884.Martin v. Löwis2002-09-141-2/+2
* Change the unicode.translate docstring to document thatWalter Dörwald2002-09-041-0/+2