summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Whitespace normalization.Tim Peters2002-05-231-1/+1
* Apply patch diff.txt from SF feature requestWalter Dörwald2002-04-221-0/+18
* Apply diff3.txt from SF patch http://www.python.org/sf/536241Walter Dörwald2002-04-171-0/+22
* Whitespace normalization.Tim Peters2002-04-161-1/+1
* Apply the second version of SF patch http://www.python.org/sf/536241Walter Dörwald2002-04-151-2/+12
* Added test case for UTF-8 encoding bug #541828.Marc-André Lemburg2002-04-101-0/+16
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-72/+72
* As part of fixing bug #536241, add a test case for string.zfill() with UnicodeAndrew M. Kuchling2002-03-291-1/+4
* Do not insert characters for unicode-escape decoders if the error modeMartin v. Löwis2002-03-211-0/+8
* Fix to the UTF-8 encoder: it failed on 0-length input strings.Marc-André Lemburg2002-02-071-23/+33
* Fix for the UTF-8 memory allocation bug and the UTF-8 encodingMarc-André Lemburg2002-02-061-12/+11
* Skipping some tests by adding the usual jython conditional test around:Finn Bock2001-12-101-24/+27
* Whitespace normalization.Tim Peters2001-12-011-1/+0
* Adding test for Unicode repr()-output.Marc-André Lemburg2001-11-281-0/+15
* Fix for bug #438164: %-formatting using Unicode objects.Marc-André Lemburg2001-11-201-4/+1
* Fix for bug #480188: printing unicode objectsMarc-André Lemburg2001-11-201-0/+13
* Additional test and documentation for the unicode() changes.Marc-André Lemburg2001-10-191-21/+61