Rip out all the u"..." literals and calls to unicode().

This commit is contained in:
Guido van Rossum 2007-05-02 19:09:54 +00:00
parent 572dbf8f13
commit ef87d6ed94
200 changed files with 18074 additions and 18074 deletions

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
u"""A module to test whether doctest recognizes some 2.2 features,
"""A module to test whether doctest recognizes some 2.2 features,
like static and class methods.
>>> print('yup') # 1
@ -15,7 +15,7 @@ the example. It should be ignored:
from test import test_support
class C(object):
u"""Class C.
"""Class C.
>>> print(C()) # 2
42