-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
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
[3.6] bpo-32356: idempotent pause_/resume_reading (GH-4914) #7629
Conversation
Doc/library/asyncio-protocol.rst
Outdated
@@ -124,11 +124,19 @@ ReadTransport | |||
the protocol's :meth:`data_received` method until :meth:`resume_reading` | |||
is called. | |||
|
|||
.. versionchanged:: 3.6.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3.6.5 was already released, and you're going to have to hurry to make 3.6.6!
Doc/library/asyncio-protocol.rst
Outdated
.. method:: resume_reading() | ||
|
||
Resume the receiving end. The protocol's :meth:`data_received` method | ||
will be called once again if some data is available for reading. | ||
|
||
.. versionchanged:: 3.6.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3.6.5 -> 3.6.?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh. Fixed.
When you're done making the requested changes, leave the comment: |
I have made the requested changes; please review again. |
Thanks for making the requested changes! @ned-deily: please review the changes made to this pull request. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version should be 3.6.7, as it missed the cutoff for 3.6.6,
When you're done making the requested changes, leave the comment: |
Oh. I missed the notification about 3.6.6 release (cut off). That's fine, it's a minor issue, no need to push it to 3.6.6. I will merge this PR once 3.6.6 is released. |
I have made the requested changes; please review again. |
Thanks for making the requested changes! @ned-deily: please review the changes made to this pull request. |
I read again @ned-deily's email: changes merged into 3.6 will be released as 3.6.7. So it's fine. |
Backport note: don't add new is_reading() method from master to 3.6.
(cherry picked from commit d757aaf)
https://bugs.python.org/issue32356