Issue 32356: asyncio: Make transport.pause_reading()/resume_reading() idempotent; add transport.is_reading() (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/76537

classification

Title: asyncio: Make transport.pause_reading()/resume_reading() idempotent; add transport.is_reading()
Type: Stage: resolved
Components: Versions:

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, vstinner, yselivanov
Priority: normal Keywords: patch

Created on 2017-12-18 03:46 by yselivanov, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4914 merged yselivanov,2017-12-18 03:52
PR 7629 merged vstinner,2018-06-11 11:54
Messages (3)
msg308509 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2017-12-18 03:46
As briefly discussed on https://github.com/python/asyncio/issues/488 and https://github.com/python/cpython/pull/528
msg308587 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2017-12-18 22:03
New changeset d757aaf9dd767d13205bf9917e520ebf43e7f6e5 by Yury Selivanov in branch 'master': bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914) https://github.com/python/cpython/commit/d757aaf9dd767d13205bf9917e520ebf43e7f6e5
msg319444 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2018-06-13 10:05
New changeset 142e3c08a40c75b5788474b0defe7d5c0671f675 by Victor Stinner in branch '3.6': [3.6] bpo-32356: idempotent pause_/resume_reading (GH-4914) (GH-7629) https://github.com/python/cpython/commit/142e3c08a40c75b5788474b0defe7d5c0671f675
History
Date User Action Args
2022-04-11 14:58:55 admin set github: 76537
2020-10-21 15:23:52 iritkatriel link issue29745 superseder
2018-06-13 10:05:18 vstinner set nosy: + vstinnermessages: +
2018-06-11 11:54:24 vstinner set pull_requests: + <pull%5Frequest7248>
2017-12-18 22:03:50 yselivanov set status: open -> closedresolution: fixedstage: patch review -> resolved
2017-12-18 22:03:29 yselivanov set messages: +
2017-12-18 03:52:32 yselivanov set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest4808>
2017-12-18 03:50:01 yselivanov set nosy: + asvetlov
2017-12-18 03:46:15 yselivanov create