diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-11 08:23:38 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-11 08:23:38 (GMT) |
commit | 352601ca00376aaf07d4399096f985d3d8ecb96f (patch) | |
tree | db43e391a0593aae173dcaa0cbea5f8f8ac84478 /Doc/whatsnew | |
parent | 9fab79bcb5b83dc0247ce4cd60486341c73e7fd5 (diff) | |
download | cpython-352601ca00376aaf07d4399096f985d3d8ecb96f.zip cpython-352601ca00376aaf07d4399096f985d3d8ecb96f.tar.gz cpython-352601ca00376aaf07d4399096f985d3d8ecb96f.tar.bz2 |
Issue #26885: xmlrpc now supports unmarshalling additional data types used
by Apache XML-RPC implementation for numerics and None.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index e6d3973..6bb3469 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -934,6 +934,14 @@ Allowed keyword arguments to be passed to :func:`Beep <winsound.Beep>`, <winsound.PlaySound>` (:issue:`27982`). +xmlrpc.client +------------- + +The module now supports unmarshalling additional data types used by +Apache XML-RPC implementation for numerics and ``None``. +(Contributed by Serhiy Storchaka in :issue:`26885`.) + + zipfile ------- |