summaryrefslogtreecommitdiff
path: root/Lib/test/test_unicode.py
Commit message (Expand)AuthorAgeFilesLines
* fix isprintable() on space characters #5126Benjamin Peterson2009-03-261-0/+1
* Merged revisions 70364 via svnmerge fromEric Smith2009-03-141-3/+33
* The Unicode database was updated to 5.1, and some characters have become prin...Amaury Forgeot d'Arc2008-09-101-3/+3
* Merged revisions 66235 via svnmerge fromAntoine Pitrou2008-09-051-1/+4
* Merged revisions 65773 via svnmerge fromAntoine Pitrou2008-08-171-9/+4
* Merged revisions 65339-65340,65342 via svnmerge fromAmaury Forgeot d'Arc2008-08-011-0/+14
* Merged revisions 65227 via svnmerge fromAntoine Pitrou2008-07-251-0/+3
* Forward port of r64958.Eric Smith2008-07-151-0/+4
* Issue #3280: like chr() already does, the "%c" format now accepts the full un...Amaury Forgeot d'Arc2008-07-041-1/+4
* Issue #3282: str.isprintable() should return False for undefined Unicode char...Georg Brandl2008-07-041-4/+13
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-9/+70
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-041-14/+8
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-8/+14
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-3/+3
* Added a test to make sure raw strings don't get unicode escapesBenjamin Peterson2008-04-051-0/+2
* Reverted r62128 on Guido's ordersBenjamin Peterson2008-04-051-2/+0
* #2541 Allow unicode escapes in raw stringsBenjamin Peterson2008-04-031-0/+2
* Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,...Christian Heimes2008-03-231-2/+16
* 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