summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do theGuido van Rossum2002-08-231-0/+2
* Code by Inyeol Lee, submitted to SF bug 595350, to implementGuido van Rossum2002-08-231-6/+4
* Fix some endcase bugs in unicode rfind()/rindex() and endswith().Guido van Rossum2002-08-201-0/+6
* Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.Marc-André Lemburg2002-08-111-0/+8
* Unicode replace() method with empty pattern argument should fail, likeGuido van Rossum2002-08-091-0/+6
* Expanded the unittests for the new width sensitive PyUnicode_Contains().Raymond Hettinger2002-08-061-0/+6
* Added a test for PyUnicode_Contains() taking into account the width ofBarry Warsaw2002-08-061-0/+1
* Committing patch #591250 which provides "str1 in str2" when str1 is aBarry Warsaw2002-08-061-18/+57
* Add encoding declaration.Martin v. Löwis2002-08-041-0/+1
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1