[Python-checkins] cpython: asyncio: IncompleteReadError is a subclass of EOFError

victor.stinner python-checkins at python.org
Mon Jan 27 12:18:59 CET 2014


http://hg.python.org/cpython/rev/dbad4564cd12
changeset:   88775:dbad4564cd12
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Jan 27 12:18:49 2014 +0100
summary:
  asyncio: IncompleteReadError is a subclass of EOFError

files:
  Doc/library/asyncio-stream.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/asyncio-stream.rst b/Doc/library/asyncio-stream.rst
--- a/Doc/library/asyncio-stream.rst
+++ b/Doc/library/asyncio-stream.rst
@@ -216,7 +216,7 @@
 
 .. exception:: IncompleteReadError
 
-    Incomplete read error.
+    Incomplete read error, subclass of :exc:`EOFError`.
 
    .. attribute:: expected
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list