Fix two typos in two stdlib docstrings (#153479)

This commit is contained in:
Javad Koushyar
2026-07-20 05:22:08 -05:00
committed by GitHub
parent f40b375ec6
commit e0293b0de4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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.
"""