1This 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 >>> 'föö'
8 'f\xf6\xf6'
9
10 >>> 'bąr'
11 'b\u0105r'
12