diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-06-05 12:33:27 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-06-05 12:33:27 (GMT) |
commit | b12d97c275a0c448a324c57c68b1fe62eca43bac (patch) | |
tree | 38816ece1de7b1d0ea488511945c05fb47a2b697 /Lib/test/test_xmlrpc.py | |
parent | f2c0830585a4c58c2e0cb6acbfc4efa628563c12 (diff) | |
download | cpython-b12d97c275a0c448a324c57c68b1fe62eca43bac.zip cpython-b12d97c275a0c448a324c57c68b1fe62eca43bac.tar.gz cpython-b12d97c275a0c448a324c57c68b1fe62eca43bac.tar.bz2 |
[Bug #841757] Exercise handling of Unicode strings
Diffstat (limited to 'Lib/test/test_xmlrpc.py')
-rw-r--r-- | Lib/test/test_xmlrpc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py index f1d69c9..1f533d2 100644 --- a/Lib/test/test_xmlrpc.py +++ b/Lib/test/test_xmlrpc.py @@ -10,6 +10,8 @@ alist = [{'astring': 'foo@bar.baz.spam', 'anotherlist': ['.zyx.41'], 'abase64': xmlrpclib.Binary("my dog has fleas"), 'boolean': xmlrpclib.False, + 'unicode': u'\u4000\u6000\u8000', + u'ukey\u4000': 'regular value', }] class XMLRPCTestCase(unittest.TestCase): |