-
-
Notifications
You must be signed in to change notification settings - Fork 32k
gh-101100: Fix Sphinx warnings from PEP 3108 stdlib re-organisation #114327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
dec5b9b
659e46d
5011da8
18e0340
c526afe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -1478,8 +1478,8 @@ complete list of changes, or look through the SVN logs for all the details. | |||
|
||||
.. Patch 790710 | ||||
|
||||
* The :mod:`pickle` and :mod:`cPickle` modules no longer accept a return value | ||||
of ``None`` from the :meth:`__reduce__` method; the method must return a tuple | ||||
* The :mod:`pickle` and :mod:`!cPickle` modules no longer accept a return value | ||||
of ``None`` from the :meth:`~object.__reduce__` method; the method must return a tuple | ||||
of arguments instead. The ability to return ``None`` was deprecated in Python | ||||
2.4, so this completes the removal of the feature. | ||||
|
||||
|
@@ -1519,7 +1519,7 @@ complete list of changes, or look through the SVN logs for all the details. | |||
|
||||
.. Patch #1472854 | ||||
|
||||
* The :mod:`SimpleXMLRPCServer` and :mod:`DocXMLRPCServer` classes now have a | ||||
* The :mod:`SimpleXMLRPCServer <xmlrpc.server>` and :mod:`DocXMLRPCServer <xmlrpc.server>` classes now have a | ||||
:attr:`rpc_paths` attribute that constrains XML-RPC operations to a limited set | ||||
of URL paths; the default is to allow only ``'/'`` and ``'/RPC2'``. Setting | ||||
:attr:`rpc_paths` to ``None`` or an empty tuple disables this path checking. | ||||
|
@@ -1650,9 +1650,9 @@ complete list of changes, or look through the SVN logs for all the details. | |||
|
||||
.. Patch #754022 | ||||
|
||||
* The :mod:`xmlrpclib` module now supports returning :class:`~datetime.datetime` objects | ||||
for the XML-RPC date type. Supply ``use_datetime=True`` to the :func:`loads` | ||||
function or the :class:`Unmarshaller` class to enable this feature. (Contributed | ||||
* The :mod:`xmlrpclib <xmlrpc.client>` module now supports returning :class:`~datetime.datetime` objects | ||||
for the XML-RPC date type. Supply ``use_datetime=True`` to the :func:`~xmlrpc.client.loads` | ||||
function or the :class:`!Unmarshaller` class to enable this feature. (Contributed | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I vaguely remember that there is still an Unmarshaller class somewhere, but I might be wrong There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like the class does exist, and is documented in the module docstring as being public: Line 113 in 1032326
But it isn't documented in the sphinx docs anywhere. I don't know enough about this module to say whether it should be documented in the sphinx docs or not 🤷 |
||||
by Skip Montanaro.) | ||||
|
||||
.. Patch 1120353 | ||||
|
@@ -2253,12 +2253,12 @@ code: | |||
appeared. In Python 2.5, the argument must be exactly one %char specifier with | ||||
no surrounding text. | ||||
|
||||
* Library: The :mod:`pickle` and :mod:`cPickle` modules no longer accept a | ||||
return value of ``None`` from the :meth:`__reduce__` method; the method must | ||||
* Library: The :mod:`pickle` and :mod:`!cPickle` modules no longer accept a | ||||
return value of ``None`` from the :meth:`~object.__reduce__` method; the method must | ||||
return a tuple of arguments instead. The modules also no longer accept the | ||||
deprecated *bin* keyword parameter. | ||||
|
||||
* Library: The :mod:`SimpleXMLRPCServer` and :mod:`DocXMLRPCServer` classes now | ||||
* Library: The :mod:`SimpleXMLRPCServer <xmlrpc.server>` and :mod:`DocXMLRPCServer <xmlrpc.server>` classes now | ||||
have a :attr:`rpc_paths` attribute that constrains XML-RPC operations to a | ||||
limited set of URL paths; the default is to allow only ``'/'`` and ``'/RPC2'``. | ||||
Setting :attr:`rpc_paths` to ``None`` or an empty tuple disables this path | ||||
|
Uh oh!
There was an error while loading. Please reload this page.