mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix version directive indents (#117719)
This commit is contained in:
parent
245e426b55
commit
94e9c35cd0
4 changed files with 8 additions and 8 deletions
|
@ -1517,7 +1517,7 @@ are also included in the pure Python version for compatibility.
|
||||||
the C version uses a thread-local rather than a coroutine-local context and the value
|
the C version uses a thread-local rather than a coroutine-local context and the value
|
||||||
is ``False``. This is slightly faster in some nested context scenarios.
|
is ``False``. This is slightly faster in some nested context scenarios.
|
||||||
|
|
||||||
.. versionadded:: 3.8.3
|
.. versionadded:: 3.8.3
|
||||||
|
|
||||||
|
|
||||||
Rounding modes
|
Rounding modes
|
||||||
|
|
|
@ -334,14 +334,14 @@ write code that handles both IP versions correctly. Address objects are
|
||||||
.. attribute:: is_multicast
|
.. attribute:: is_multicast
|
||||||
.. attribute:: is_private
|
.. attribute:: is_private
|
||||||
.. attribute:: is_global
|
.. attribute:: is_global
|
||||||
|
|
||||||
|
.. versionadded:: 3.4
|
||||||
|
|
||||||
.. attribute:: is_unspecified
|
.. attribute:: is_unspecified
|
||||||
.. attribute:: is_reserved
|
.. attribute:: is_reserved
|
||||||
.. attribute:: is_loopback
|
.. attribute:: is_loopback
|
||||||
.. attribute:: is_link_local
|
.. attribute:: is_link_local
|
||||||
|
|
||||||
.. versionadded:: 3.4
|
|
||||||
is_global
|
|
||||||
|
|
||||||
.. attribute:: is_site_local
|
.. attribute:: is_site_local
|
||||||
|
|
||||||
``True`` if the address is reserved for site-local usage. Note that
|
``True`` if the address is reserved for site-local usage. Note that
|
||||||
|
|
|
@ -1820,7 +1820,7 @@ to speed up repeated connections from the same clients.
|
||||||
.. versionchanged:: 3.6
|
.. versionchanged:: 3.6
|
||||||
*session* argument was added.
|
*session* argument was added.
|
||||||
|
|
||||||
.. versionchanged:: 3.7
|
.. versionchanged:: 3.7
|
||||||
The method returns an instance of :attr:`SSLContext.sslsocket_class`
|
The method returns an instance of :attr:`SSLContext.sslsocket_class`
|
||||||
instead of hard-coded :class:`SSLSocket`.
|
instead of hard-coded :class:`SSLSocket`.
|
||||||
|
|
||||||
|
|
|
@ -113,9 +113,9 @@ The :mod:`urllib.request` module defines the following functions:
|
||||||
``http/1.1`` when no *context* is given. Custom *context* should set
|
``http/1.1`` when no *context* is given. Custom *context* should set
|
||||||
ALPN protocols with :meth:`~ssl.SSLContext.set_alpn_protocols`.
|
ALPN protocols with :meth:`~ssl.SSLContext.set_alpn_protocols`.
|
||||||
|
|
||||||
.. versionchanged:: 3.13
|
.. versionchanged:: 3.13
|
||||||
Remove *cafile*, *capath* and *cadefault* parameters: use the *context*
|
Remove *cafile*, *capath* and *cadefault* parameters: use the *context*
|
||||||
parameter instead.
|
parameter instead.
|
||||||
|
|
||||||
|
|
||||||
.. function:: install_opener(opener)
|
.. function:: install_opener(opener)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue