From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 20 Jul 2026 10:56:31 +0000 (+0200) Subject: [3.15] Fix two typos in two stdlib docstrings (GH-153479) (#154252) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a4a1088f2fb4059585b9e718543e81f0c10d8cf;p=thirdparty%2FPython%2Fcpython.git [3.15] Fix two typos in two stdlib docstrings (GH-153479) (#154252) (cherry picked from commit e0293b0de4071ca591e36fd42ef04285b91ef546) Co-authored-by: Javad Koushyar --- diff --git a/Lib/compression/zstd/_zstdfile.py b/Lib/compression/zstd/_zstdfile.py index c4477244e832..26d7c9006375 100644 --- a/Lib/compression/zstd/_zstdfile.py +++ b/Lib/compression/zstd/_zstdfile.py @@ -34,7 +34,7 @@ class ZstdFile(_streams.BaseStream): level=None, options=None, zstd_dict=None): """Open a Zstandard compressed file in binary mode. - *file* can be either an file-like object, or a file name to open. + *file* can be either a file-like object, or a file name to open. *mode* can be 'r' for reading (default), 'w' for (over)writing, 'x' for creating exclusively, or 'a' for appending. These can diff --git a/Lib/concurrent/futures/_base.py b/Lib/concurrent/futures/_base.py index 4e71331f9a0a..43774066c5a9 100644 --- a/Lib/concurrent/futures/_base.py +++ b/Lib/concurrent/futures/_base.py @@ -703,5 +703,5 @@ class Executor(object): class BrokenExecutor(RuntimeError): """ - Raised when a executor has become non-functional after a severe failure. + Raised when an executor has become non-functional after a severe failure. """