bpo-45132: Fix the reStructuredText markup error. (GH-28270)

This commit is contained in:
Serhiy Storchaka 2021-09-10 15:40:07 +03:00 committed by GitHub
parent 707137b863
commit 17a1b3e63a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ also provides these miscellaneous utilities:
.. class:: FileWrapper(filelike, blksize=8192)
A wrapper to convert a file-like object to an :term:`iterator`. The resulting objects
are :term`iterable`\ s. As the object is iterated over, the
are :term:`iterable`\ s. As the object is iterated over, the
optional *blksize* parameter will be repeatedly passed to the *filelike*
object's :meth:`read` method to obtain bytestrings to yield. When :meth:`read`
returns an empty bytestring, iteration is ended and is not resumable.