]> granicus.if.org Git - python/commitdiff
Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 28 May 2014 22:14:03 +0000 (00:14 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 28 May 2014 22:14:03 +0000 (00:14 +0200)
The function sets the the pipe to non-blocking mode.

Doc/library/asyncio-eventloop.rst
Lib/asyncio/events.py

index 835266f7eb6af0c3a0013036b7492a9645542041..b961260e35e2b950cf3043ef0b4b49891a099472 100644 (file)
@@ -455,11 +455,11 @@ Connect pipes
 
 .. method:: BaseEventLoop.connect_read_pipe(protocol_factory, pipe)
 
-   Register read pipe in eventloop.
+   Register read pipe in eventloop. Set the *pipe* to non-blocking mode.
 
    *protocol_factory* should instantiate object with :class:`Protocol`
-   interface.  pipe is file-like object already switched to nonblocking.
-   Return pair (transport, protocol), where transport support
+   interface.  *pipe* is a :term:`file-like object <file object>`.
+   Return pair ``(transport, protocol)``, where *transport* supports the
    :class:`ReadTransport` interface.
 
    This method is a :ref:`coroutine <coroutine>`.
index 31592d10b160eaa4be086b211377bd10519f57e4..f0ad5680520444e0933a073d1859de855eb0170a 100644 (file)
@@ -257,11 +257,11 @@ class AbstractEventLoop:
     # Pipes and subprocesses.
 
     def connect_read_pipe(self, protocol_factory, pipe):
-        """Register read pipe in event loop.
+        """Register read pipe in event loop. Set the pipe to non-blocking mode.
 
         protocol_factory should instantiate object with Protocol interface.
-        pipe is file-like object already switched to nonblocking.
-        Return pair (transport, protocol), where transport support
+        pipe is a file-like object.
+        Return pair (transport, protocol), where transport supports the
         ReadTransport interface."""
         # The reason to accept file-like object instead of just file descriptor
         # is: we need to own pipe and close it at transport finishing