8000 Fix a typo in doc by Harsh-br0 · Pull Request #92030 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Fix a typo in doc #92030

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 2, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix a typo in doc
Remove a confusion for read method in asyncio-subprocess doc for stderr StreamReader instance
  • Loading branch information
Harsh-br0 authored Apr 28, 2022
commit b9ad6ba0d113c9832cbf8af52c7e13c8cf3d6975
2 changes: 1 addition & 1 deletion Doc/library/asyncio-subprocess.rst
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ their completion.
Use the :meth:`communicate` method rather than
:attr:`process.stdin.write() <stdin>`,
:attr:`await process.stdout.read() <stdout>` or
:attr:`await process.stderr.read <stderr>`.
:attr:`await process.stderr.read() <stderr>`.
This avoids deadlocks due to streams pausing reading or writing
and blocking the child process.

Expand Down
0