diff options
author | Guido van Rossum <guido@python.org> | 2001-01-24 21:46:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-24 21:46:18 (GMT) |
commit | 0fc8b74fc59315cdc232a8b8e36e9d3ec8c14cd0 (patch) | |
tree | 79b75c30e34a287f80affa767f4580e7b4c0bacc /Lib/test | |
parent | 05bbb9a8fb0e6b5dc01bf30d78517d356a1080cb (diff) | |
download | cpython-0fc8b74fc59315cdc232a8b8e36e9d3ec8c14cd0.zip cpython-0fc8b74fc59315cdc232a8b8e36e9d3ec8c14cd0.tar.gz cpython-0fc8b74fc59315cdc232a8b8e36e9d3ec8c14cd0.tar.bz2 |
Fix the test output, now that escapes in repr() of string and Unicode
are different (Ping couldn't test this).
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/output/test_pyexpat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/output/test_pyexpat b/Lib/test/output/test_pyexpat index 5d6160a..da07312 100644 --- a/Lib/test/output/test_pyexpat +++ b/Lib/test/output/test_pyexpat @@ -11,7 +11,7 @@ Notation declared: ('notation', None, 'notation.jpeg', None) Unparsed entity decl: ('unparsed_entity', None, 'entity.file', None, 'notation') Start element: - 'root' {'attr1': 'value1', 'attr2': 'value2\341\275\200'} + 'root' {'attr1': 'value1', 'attr2': 'value2\xe1\xbd\x80'} NS decl: 'myns' 'http://www.python.org/namespace' Start element: @@ -41,7 +41,7 @@ Notation declared: (u'notation', None, u'notation.jpeg', None) Unparsed entity decl: (u'unparsed_entity', None, u'entity.file', None, u'notation') Start element: - u'root' {u'attr1': u'value1', u'attr2': u'value2\u1F40'} + u'root' {u'attr1': u'value1', u'attr2': u'value2\u1f40'} NS decl: u'myns' u'http://www.python.org/namespace' Start element: @@ -71,7 +71,7 @@ Notation declared: (u'notation', None, u'notation.jpeg', None) Unparsed entity decl: (u'unparsed_entity', None, u'entity.file', None, u'notation') Start element: - u'root' {u'attr1': u'value1', u'attr2': u'value2\u1F40'} + u'root' {u'attr1': u'value1', u'attr2': u'value2\u1f40'} NS decl: u'myns' u'http://www.python.org/namespace' Start element: |