This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients Nathan Williams, loewis, serhiy.storchaka
Date 2016-04-28.16:50:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461862222.01.0.732917903153.issue26873@psf.upfronthosting.co.za>
In-reply-to
Content
Minimal reproducer:

>>> xmlrpclib.loads('<params><param><value><struct><member><name>a</name><value><ex:nil/></value></member><member><name>b</name><value><ex:nil/></value></member></struct></value></param></params>')
(({'a': 'b'},), None)

The workaround for your particular case, Nathan:

    xmlrpclib.Unmarshaller.dispatch['ex:nil'] = xmlrpclib.Unmarshaller.dispatch['nil']
History
Date User Action Args
2016-04-28 16:50:22serhiy.storchakasetrecipients: + serhiy.storchaka, loewis, Nathan Williams
2016-04-28 16:50:22serhiy.storchakasetmessageid: <1461862222.01.0.732917903153.issue26873@psf.upfronthosting.co.za>
2016-04-28 16:50:21serhiy.storchakalinkissue26873 messages
2016-04-28 16:50:21serhiy.storchakacreate