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 kynan
Recipients christian.heimes, kynan
Date 2021-03-28.09:21:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1616923284.46.0.0991006696827.issue43645@roundup.psfhosted.org>
In-reply-to
Content
The change introduced in https://github.com/python/cpython/pull/15703 (bpo-38038) caused an (I presume unintended) behavior change that breaks some xmlrpc users: previously, the XLMRPC handler was everything after the host part of the URI (https://github.com/python/cpython/blame/32f825393e5836ab71de843596379fa3f9e23c7a/Lib/xmlrpc/client.py#L1428), but now the query string is *discarded* (https://github.com/python/cpython/blame/63298930fb531ba2bb4f23bc3b915dbf1e17e9e1/Lib/xmlrpc/client.py#L1424).

This is known to break the XMLRPC for DokuWiki (https://www.dokuwiki.org/devel:xmlrpc), which uses query parameters for authentication: https://github.com/kynan/dokuwikixmlrpc/issues/8
History
Date User Action Args
2021-03-28 09:21:24kynansetrecipients: + kynan, christian.heimes
2021-03-28 09:21:24kynansetmessageid: <1616923284.46.0.0991006696827.issue43645@roundup.psfhosted.org>
2021-03-28 09:21:24kynanlinkissue43645 messages
2021-03-28 09:21:23kynancreate