[Python-checkins] python/dist/src/Lib/test test_xmlrpc.py, 1.4, 1.4.10.1

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sat Jun 5 08:55:35 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18774/Lib/test

Modified Files:
      Tag: release23-maint
	test_xmlrpc.py 
Log Message:
[Bug #841757] Patch from /F to allow Unicode strings as struct keys
(Also a 2.2 bugfix candidate.)

Index: test_xmlrpc.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_xmlrpc.py,v
retrieving revision 1.4
retrieving revision 1.4.10.1
diff -C2 -d -r1.4 -r1.4.10.1
*** test_xmlrpc.py	25 Apr 2003 00:27:24 -0000	1.4
--- test_xmlrpc.py	5 Jun 2004 12:55:33 -0000	1.4.10.1
***************
*** 11,14 ****
--- 11,16 ----
            'abase64': xmlrpclib.Binary("my dog has fleas"),
            'boolean': xmlrpclib.False,
+           'unicode': u'\u4000\u6000\u8000',
+           u'ukey\u4000': 'regular value',
            }]
  




More information about the Python-checkins mailing list