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
091b84f2
Commit
091b84f2
authored
Feb 27, 2017
by
Mariatta
Committed by
GitHub
Feb 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Asyncio documentation: remove `self` from method signatures (GH-334)
parent
f669ffff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Doc/library/asyncio-protocol.rst
Doc/library/asyncio-protocol.rst
+3
-3
No files found.
Doc/library/asyncio-protocol.rst
View file @
091b84f2
...
...
@@ -36,7 +36,7 @@ BaseTransport
Base class for transports.
.. method:: close(
self
)
.. method:: close()
Close the transport. If the transport has a buffer for outgoing
data, buffered data will be flushed asynchronously. No more data
...
...
@@ -44,7 +44,7 @@ BaseTransport
protocol's :meth:`connection_lost` method will be called with
:const:`None` as its argument.
.. method:: is_closing(
self
)
.. method:: is_closing()
Return ``True`` if the transport is closing or is closed.
...
...
@@ -251,7 +251,7 @@ BaseSubprocessTransport
if it hasn't returned, similarly to the
:attr:`subprocess.Popen.returncode` attribute.
.. method:: kill(
self
)
.. method:: kill()
Kill the subprocess, as in :meth:`subprocess.Popen.kill`.
...
...
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