blob: a219d16a6eae69e627882ef4f3eb10c5a32c494a [file] [log] [blame]
George Yoshidaf3c65de2006-05-28 16:39:09 +00001This is a sample doctest in a text file that contains non-ASCII characters.
2This file is encoded using UTF-8.
3
4In order to get this test to pass, we have to manually specify the
5encoding.
6
7 >>> u'föö'
8 u'f\xf6\xf6'
9
10 >>> u'bąr'
11 u'b\u0105r'
12
13 >>> 'föö'
14 'f\xc3\xb6\xc3\xb6'
15
16 >>> 'bąr'
17 'b\xc4\x85r'