https://github.com/python/cpython/commit/40f7fbf4a53d2f2cb0414a22f891d6e7e288280c
commit: 40f7fbf4a53d2f2cb0414a22f891d6e7e288280c
branch: main
author: ilya <[email protected]>
committer: picnixz <[email protected]>
date: 2026-07-19T21:15:23+02:00
summary:

Fix grammatical typos in documentation (#154181)

files:
M Doc/library/ast.rst
M Doc/library/compression.zstd.rst
M Doc/library/sys.rst

diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst
index 4809fdb42bf3d7..5bdfe7c182de3a 100644
--- a/Doc/library/ast.rst
+++ b/Doc/library/ast.rst
@@ -1366,7 +1366,7 @@ Control flow
 
    ``try`` blocks which are followed by ``except*`` clauses. The attributes 
are the
    same as for :class:`Try` but the :class:`ExceptHandler` nodes in 
``handlers``
-   are interpreted as ``except*`` blocks rather then ``except``.
+   are interpreted as ``except*`` blocks rather than ``except``.
 
    .. doctest::
 
diff --git a/Doc/library/compression.zstd.rst b/Doc/library/compression.zstd.rst
index 6d99e36e1e5bb6..6618ccf7d559e7 100644
--- a/Doc/library/compression.zstd.rst
+++ b/Doc/library/compression.zstd.rst
@@ -503,7 +503,7 @@ Advanced parameter control
    The :meth:`~.bounds` method can be used on any attribute to get the valid
    values for that parameter.
 
-   Parameters are optional; any omitted parameter will have it's value selected
+   Parameters are optional; any omitted parameter will have its value selected
    automatically.
 
    Example getting the lower and upper bound of :attr:`~.compression_level`::
@@ -732,7 +732,7 @@ Advanced parameter control
 
    An :class:`~enum.IntEnum` containing the advanced decompression parameter
    keys that can be used when decompressing data. Parameters are optional; any
-   omitted parameter will have it's value selected automatically.
+   omitted parameter will have its value selected automatically.
 
    The :meth:`~.bounds` method can be used on any attribute to get the valid
    values for that parameter.
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 9a41e406c8c10e..355621db2e18a1 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -2135,7 +2135,7 @@ always available. Unless explicitly noted otherwise, all 
variables are read-only
    returned by the :func:`open` function.  Their parameters are chosen as
    follows:
 
-   * The encoding and error handling are is initialized from
+   * The encoding and error handling are initialized from
      :c:member:`PyConfig.stdio_encoding` and :c:member:`PyConfig.stdio_errors`.
 
      On Windows, UTF-8 is used for the console device.  Non-character

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to