mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Rip out all the u"..." literals and calls to unicode().
This commit is contained in:
parent
572dbf8f13
commit
ef87d6ed94
200 changed files with 18074 additions and 18074 deletions
|
@ -31,7 +31,7 @@ class StrTest(
|
|||
# Make sure __str__() behaves properly
|
||||
class Foo0:
|
||||
def __unicode__(self):
|
||||
return u"foo"
|
||||
return "foo"
|
||||
|
||||
class Foo1:
|
||||
def __str__(self):
|
||||
|
@ -43,28 +43,28 @@ class StrTest(
|
|||
|
||||
class Foo3(object):
|
||||
def __str__(self):
|
||||
return u"foo"
|
||||
return "foo"
|
||||
|
||||
class Foo4(unicode):
|
||||
class Foo4(str):
|
||||
def __str__(self):
|
||||
return u"foo"
|
||||
return "foo"
|
||||
|
||||
class Foo5(str):
|
||||
def __str__(self):
|
||||
return u"foo"
|
||||
return "foo"
|
||||
|
||||
class Foo6(str):
|
||||
def __str__(self):
|
||||
return "foos"
|
||||
|
||||
def __unicode__(self):
|
||||
return u"foou"
|
||||
return "foou"
|
||||
|
||||
class Foo7(unicode):
|
||||
class Foo7(str):
|
||||
def __str__(self):
|
||||
return "foos"
|
||||
def __unicode__(self):
|
||||
return u"foou"
|
||||
return "foou"
|
||||
|
||||
class Foo8(str):
|
||||
def __new__(cls, content=""):
|
||||
|
@ -88,7 +88,7 @@ class StrTest(
|
|||
self.assertEqual(str(Foo7("bar")), "foos")
|
||||
self.assertEqual(str(Foo8("foo")), "foofoo")
|
||||
self.assertEqual(str(Foo9("foo")), "string")
|
||||
self.assertEqual(unicode(Foo9("foo")), u"not unicode")
|
||||
self.assertEqual(str(Foo9("foo")), "not unicode")
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(StrTest)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue