From b12d97c275a0c448a324c57c68b1fe62eca43bac Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 5 Jun 2004 12:33:27 +0000 Subject: [Bug #841757] Exercise handling of Unicode strings --- Lib/test/test_xmlrpc.py | 2 ++ 1 file changed, 2 insertions(+) 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): -- cgit v0.12