Skip to content

Commit

Permalink
[3.11] Docs: align usage of versionadded/versionchanged with recommen…
Browse files Browse the repository at this point in the history
…ded practice (python#114409)

(cherry picked from commit 1d7bddd)

Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
  • Loading branch information
3 people committed Jan 23, 2024
1 parent 1f04ac8 commit 6bda8f0
Show file tree
Hide file tree
Showing 25 changed files with 156 additions and 157 deletions.
4 changes: 2 additions & 2 deletions Doc/library/argparse.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1923,8 +1923,8 @@ FileType objects
>>> parser.parse_args(['-'])
Namespace(infile=<_io.TextIOWrapper name='<stdin>' encoding='UTF-8'>)

.. versionadded:: 3.4
The *encodings* and *errors* keyword arguments.
.. versionchanged:: 3.4
Added the *encodings* and *errors* parameters.


Argument groups
Expand Down
4 changes: 2 additions & 2 deletions Doc/library/asyncio-stream.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ and work with streams:
.. versionchanged:: 3.7
Added the *ssl_handshake_timeout* parameter.

.. versionadded:: 3.8
Added *happy_eyeballs_delay* and *interleave* parameters.
.. versionchanged:: 3.8
Added the *happy_eyeballs_delay* and *interleave* parameters.

.. versionchanged:: 3.10
Removed the *loop* parameter.
Expand Down
4 changes: 2 additions & 2 deletions Doc/library/bdb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ The :mod:`bdb` module also defines two classes:
frame is considered to originate in a certain module is determined
by the ``__name__`` in the frame globals.

.. versionadded:: 3.1
The *skip* argument.
.. versionchanged:: 3.1
Added the *skip* parameter.

The following methods of :class:`Bdb` normally don't need to be overridden.

Expand Down
4 changes: 2 additions & 2 deletions Doc/library/concurrent.futures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ And::
should be higher than the number of workers
for :class:`ProcessPoolExecutor`.

.. versionadded:: 3.6
The *thread_name_prefix* argument was added to allow users to
.. versionchanged:: 3.6
Added the *thread_name_prefix* parameter to allow users to
control the :class:`threading.Thread` names for worker threads created by
the pool for easier debugging.

Expand Down
16 changes: 8 additions & 8 deletions Doc/library/configparser.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1045,14 +1045,14 @@ ConfigParser Objects
config.read(['site.cfg', os.path.expanduser('~/.myapp.cfg')],
encoding='cp1250')

.. versionadded:: 3.2
The *encoding* parameter. Previously, all files were read using the
default encoding for :func:`open`.
.. versionchanged:: 3.2
Added the *encoding* parameter.
Previously, all files were read using the default encoding for :func:`open`.

.. versionadded:: 3.6.1
.. versionchanged:: 3.6.1
The *filenames* parameter accepts a :term:`path-like object`.

.. versionadded:: 3.7
.. versionchanged:: 3.7
The *filenames* parameter accepts a :class:`bytes` object.


Expand Down Expand Up @@ -1313,9 +1313,9 @@ Exceptions
that is already present or in strict parsers when a section if found more
than once in a single input file, string or dictionary.

.. versionadded:: 3.2
Optional ``source`` and ``lineno`` attributes and arguments to
:meth:`!__init__` were added.
.. versionchanged:: 3.2
Added the optional *source* and *lineno* attributes and parameters to
:meth:`!__init__`.


.. exception:: DuplicateOptionError
Expand Down
20 changes: 10 additions & 10 deletions Doc/library/datetime.rst
Original file line number Diff line number Diff line change
Expand Up @@ -855,8 +855,8 @@ Constructor:

If an argument outside those ranges is given, :exc:`ValueError` is raised.

.. versionadded:: 3.6
Added the ``fold`` argument.
.. versionchanged:: 3.6
Added the *fold* parameter.

Other constructors, all class methods:

Expand Down Expand Up @@ -1244,8 +1244,8 @@ Instance methods:
``tzinfo=None`` can be specified to create a naive datetime from an aware
datetime with no conversion of date and time data.

.. versionadded:: 3.6
Added the ``fold`` argument.
.. versionchanged:: 3.6
Added the *fold* parameter.


.. method:: datetime.astimezone(tz=None)
Expand Down Expand Up @@ -1488,8 +1488,8 @@ Instance methods:
>>> dt.isoformat(timespec='microseconds')
'2015-01-01T12:30:59.000000'

.. versionadded:: 3.6
Added the *timespec* argument.
.. versionchanged:: 3.6
Added the *timespec* parameter.


.. method:: datetime.__str__()
Expand Down Expand Up @@ -1822,8 +1822,8 @@ Instance methods:
``tzinfo=None`` can be specified to create a naive :class:`.time` from an
aware :class:`.time`, without conversion of the time data.

.. versionadded:: 3.6
Added the ``fold`` argument.
.. versionchanged:: 3.6
Added the *fold* parameter.


.. method:: time.isoformat(timespec='auto')
Expand Down Expand Up @@ -1866,8 +1866,8 @@ Instance methods:
>>> dt.isoformat(timespec='auto')
'12:34:56'

.. versionadded:: 3.6
Added the *timespec* argument.
.. versionchanged:: 3.6
Added the *timespec* parameter.


.. method:: time.__str__()
Expand Down
8 changes: 4 additions & 4 deletions Doc/library/difflib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ diffs. For comparing directories and files, see also, the :mod:`filecmp` module.
the purpose of sequence matching. This heuristic can be turned off by setting
the ``autojunk`` argument to ``False`` when creating the :class:`SequenceMatcher`.

.. versionadded:: 3.2
The *autojunk* parameter.
.. versionchanged:: 3.2
Added the *autojunk* parameter.


.. class:: Differ
Expand Down Expand Up @@ -387,8 +387,8 @@ The :class:`SequenceMatcher` class has this constructor:
The optional argument *autojunk* can be used to disable the automatic junk
heuristic.

.. versionadded:: 3.2
The *autojunk* parameter.
.. versionchanged:: 3.2
Added the *autojunk* parameter.

SequenceMatcher objects get three data attributes: *bjunk* is the
set of elements of *b* for which *isjunk* is ``True``; *bpopular* is the set of
Expand Down
1 change: 0 additions & 1 deletion Doc/library/email.policy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ added matters. To illustrate::
Default: :const:`False`.

.. versionadded:: 3.5
The *mangle_from_* parameter.


.. attribute:: message_factory
Expand Down
8 changes: 4 additions & 4 deletions Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1072,8 +1072,8 @@ are always available. They are listed here in alphabetical order.
such as ``sorted(iterable, key=keyfunc, reverse=True)[0]`` and
``heapq.nlargest(1, iterable, key=keyfunc)``.

.. versionadded:: 3.4
The *default* keyword-only argument.
.. versionchanged:: 3.4
Added the *default* keyword-only parameter.

.. versionchanged:: 3.8
The *key* can be ``None``.
Expand Down Expand Up @@ -1110,8 +1110,8 @@ are always available. They are listed here in alphabetical order.
such as ``sorted(iterable, key=keyfunc)[0]`` and ``heapq.nsmallest(1,
iterable, key=keyfunc)``.

.. versionadded:: 3.4
The *default* keyword-only argument.
.. versionchanged:: 3.4
Added the *default* keyword-only parameter.

.. versionchanged:: 3.8
The *key* can be ``None``.
Expand Down
6 changes: 3 additions & 3 deletions Doc/library/functools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ The :mod:`functools` module defines the following functions:
In contrast, the tuple arguments ``('answer', Decimal(42))`` and
``('answer', Fraction(42))`` are treated as equivalent.

The wrapped function is instrumented with a :func:`cache_parameters`
The wrapped function is instrumented with a :func:`!cache_parameters`
function that returns a new :class:`dict` showing the values for *maxsize*
and *typed*. This is for information purposes only. Mutating the values
has no effect.
Expand Down Expand Up @@ -260,8 +260,8 @@ The :mod:`functools` module defines the following functions:
.. versionchanged:: 3.8
Added the *user_function* option.

.. versionadded:: 3.9
Added the function :func:`cache_parameters`
.. versionchanged:: 3.9
Added the function :func:`!cache_parameters`

.. decorator:: total_ordering

Expand Down
7 changes: 3 additions & 4 deletions Doc/library/http.client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ HTTPConnection Objects
:class:`str` or bytes-like object that is not also a file as the
body representation.

.. versionadded:: 3.2
.. versionchanged:: 3.2
*body* can now be an iterable.

.. versionchanged:: 3.6
Expand Down Expand Up @@ -446,9 +446,8 @@ also send your request step by step, by using the four functions below.
This is to avoid premature termination of the read of the request by
the target server due to malformed encoding.

.. versionadded:: 3.6
Chunked encoding support. The *encode_chunked* parameter was
added.
.. versionchanged:: 3.6
Added chunked encoding support and the *encode_chunked* parameter.


.. method:: HTTPConnection.send(data)
Expand Down
22 changes: 11 additions & 11 deletions Doc/library/http.server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ provides three different variants:
or the current directory if *directory* is not provided, directly
mapping the directory structure to HTTP requests.

.. versionadded:: 3.7
The *directory* parameter.
.. versionchanged:: 3.7
Added the *directory* parameter.

.. versionchanged:: 3.9
The *directory* parameter accepts a :term:`path-like object`.
Expand Down Expand Up @@ -433,29 +433,29 @@ to bind to localhost only::

python -m http.server --bind 127.0.0.1

.. versionadded:: 3.4
``--bind`` argument was introduced.
.. versionchanged:: 3.4
Added the ``--bind`` option.

.. versionadded:: 3.8
``--bind`` argument enhanced to support IPv6
.. versionchanged:: 3.8
Support IPv6 in the ``--bind`` option.

By default, the server uses the current directory. The option ``-d/--directory``
specifies a directory to which it should serve the files. For example,
the following command uses a specific directory::

python -m http.server --directory /tmp/

.. versionadded:: 3.7
``--directory`` argument was introduced.
.. versionchanged:: 3.7
Added the ``--directory`` option.

By default, the server is conformant to HTTP/1.0. The option ``-p/--protocol``
specifies the HTTP version to which the server is conformant. For example, the
following command runs an HTTP/1.1 conformant server::

python -m http.server --protocol HTTP/1.1

.. versionadded:: 3.11
``--protocol`` argument was introduced.
.. versionchanged:: 3.11
Added the ``--protocol`` option.

.. class:: CGIHTTPRequestHandler(request, client_address, server)

Expand Down Expand Up @@ -519,5 +519,5 @@ default :class:`BaseHTTPRequestHandler` ``.log_message``
implementation. This could allow remote clients connecting to your
server to send nefarious control codes to your terminal.

.. versionadded:: 3.11.1
.. versionchanged:: 3.11.1
Control characters are scrubbed in stderr logs.
4 changes: 2 additions & 2 deletions Doc/library/logging.config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ in :mod:`logging` itself) and defining handlers which are declared either in
application (e.g. based on command-line parameters or other aspects
of the runtime environment) before being passed to ``fileConfig``.

.. versionadded:: 3.10
The *encoding* parameter is added.
.. versionchanged:: 3.10
Added the *encoding* parameter.

.. versionchanged:: 3.11.4
An exception will be thrown if the provided file
Expand Down
4 changes: 2 additions & 2 deletions Doc/library/logging.handlers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -871,8 +871,8 @@ supports sending logging messages to an email address via SMTP.
A timeout can be specified for communication with the SMTP server using the
*timeout* argument.

.. versionadded:: 3.3
The *timeout* argument was added.
.. versionchanged:: 3.3
Added the *timeout* parameter.

.. method:: emit(record)

Expand Down
Loading

0 comments on commit 6bda8f0

Please sign in to comment.