Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
cfd155e5
Commit
cfd155e5
authored
Mar 13, 2014
by
Éric Araujo
Browse files
Options
Browse Files
Download
Plain Diff
Merge heads
parents
b0b07a00
cfa8982b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Doc/library/asyncio-protocol.rst
Doc/library/asyncio-protocol.rst
+1
-1
Doc/library/asyncio-subprocess.rst
Doc/library/asyncio-subprocess.rst
+2
-2
Doc/library/asyncio-sync.rst
Doc/library/asyncio-sync.rst
+1
-1
No files found.
Doc/library/asyncio-protocol.rst
View file @
cfd155e5
...
@@ -497,6 +497,6 @@ TCP echo server example, send back received data and close the connection::
...
@@ -497,6 +497,6 @@ TCP echo server example, send back received data and close the connection::
:meth:`Transport.close` can be called immediately after
:meth:`Transport.close` can be called immediately after
:meth:`WriteTransport.write` even if data are not sent yet on the socket: both
:meth:`WriteTransport.write` even if data are not sent yet on the socket: both
methods are asynchronous. ``yield from`` is not needed because these transport
methods are asynchronous. ``yield from`` is not needed because these transport
methods
don't return
coroutines.
methods
are not
coroutines.
Doc/library/asyncio-subprocess.rst
View file @
cfd155e5
...
@@ -11,13 +11,13 @@ Create a subprocess
...
@@ -11,13 +11,13 @@ Create a subprocess
Run the shell command *cmd* given as a string. Return a :class:`~asyncio.subprocess.Process`
Run the shell command *cmd* given as a string. Return a :class:`~asyncio.subprocess.Process`
instance.
instance.
This function
returns a :ref:`coroutine object
<coroutine>`.
This function
is a :ref:`coroutine
<coroutine>`.
.. function:: create_subprocess_exec(\*args, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds)
.. function:: create_subprocess_exec(\*args, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds)
Create a subprocess. Return a :class:`~asyncio.subprocess.Process` instance.
Create a subprocess. Return a :class:`~asyncio.subprocess.Process` instance.
This function
returns a :ref:`coroutine object
<coroutine>`.
This function
is a :ref:`coroutine
<coroutine>`.
Use the :meth:`BaseEventLoop.connect_read_pipe` and
Use the :meth:`BaseEventLoop.connect_read_pipe` and
:meth:`BaseEventLoop.connect_write_pipe` methods to connect pipes.
:meth:`BaseEventLoop.connect_write_pipe` methods to connect pipes.
...
...
Doc/library/asyncio-sync.rst
View file @
cfd155e5
...
@@ -73,7 +73,7 @@ Lock
...
@@ -73,7 +73,7 @@ Lock
This method blocks until the lock is unlocked, then sets it to locked and
This method blocks until the lock is unlocked, then sets it to locked and
returns ``True``.
returns ``True``.
This method
returns a :ref:`coroutine object
<coroutine>`.
This method
is a :ref:`coroutine
<coroutine>`.
.. method:: release()
.. method:: release()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment