~malept/ubuntu/lucid/python2.6/dev-dependency-fix

« back to all changes in this revision

Viewing changes to Lib/test/test_doctest4.txt

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-13 12:51:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090213125100-uufgcb9yeqzujpqw
Tags: upstream-2.6.1
Import upstream version 2.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This is a sample doctest in a text file that contains non-ASCII characters.
 
2
This file is encoded using UTF-8.
 
3
 
 
4
In order to get this test to pass, we have to manually specify the
 
5
encoding.
 
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'