[Python-checkins] Fix padding on asyncio.IncompleteReadError docs (GH-12258)

Miss Islington (bot) webhook-mailer at python.org
Sun Mar 10 07:12:18 EDT 2019


https://github.com/python/cpython/commit/ae2378af3e09cb17d8e0187c13a04f0874a48905
commit: ae2378af3e09cb17d8e0187c13a04f0874a48905
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-03-10T04:12:12-07:00
summary:

Fix padding on asyncio.IncompleteReadError docs (GH-12258)

(cherry picked from commit 11205b80309a01666eefee2301a244aa73a4c450)

Co-authored-by: Andre Delfino <adelfino at gmail.com>

files:
M Doc/library/asyncio-exceptions.rst

diff --git a/Doc/library/asyncio-exceptions.rst b/Doc/library/asyncio-exceptions.rst
index dbd5df720850..e49577a203e8 100644
--- a/Doc/library/asyncio-exceptions.rst
+++ b/Doc/library/asyncio-exceptions.rst
@@ -65,11 +65,11 @@ Exceptions
 
 .. exception:: IncompleteReadError
 
-    The requested read operation did not complete fully.
+   The requested read operation did not complete fully.
 
-    Raised by the :ref:`asyncio stream APIs<asyncio-streams>`.
+   Raised by the :ref:`asyncio stream APIs<asyncio-streams>`.
 
-    This exception is a subclass of :exc:`EOFError`.
+   This exception is a subclass of :exc:`EOFError`.
 
    .. attribute:: expected
 



More information about the Python-checkins mailing list