summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+2
* #1496: revert str.translate() to the old version, and addGeorg Brandl2007-11-271-9/+28
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-2/+2
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-34/+29
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-2/+2
* Patch #1071: Improve unicode.translate() so that you can pass unicodeGeorg Brandl2007-10-231-1/+3
* Make str/str8 comparisons return True/False for !=/==.Brett Cannon2007-10-221-0/+4
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-1/+1
* Patch # 1145 by Thomas Lee:Guido van Rossum2007-09-271-0/+6
* Changed some ValueError's to KeyError and IndexError.Eric Smith2007-09-041-15/+16
* Fix segfault discovered by Ron Adam. Not checking for terminating right brac...Eric Smith2007-09-031-0/+2
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-011-3/+0
* Added format tests.Eric Smith2007-08-301-8/+8
* Additional test for formatting code.Eric Smith2007-08-271-3/+9
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-3/+3
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-2/+2
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-0/+9
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+212
* 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