summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2017-12-18 22:03:23 (GMT)
committerGitHub <noreply@github.com>2017-12-18 22:03:23 (GMT)
commitd757aaf9dd767d13205bf9917e520ebf43e7f6e5 (patch)
tree2e0c92b2daf71cdf63c68a392e49aaa0a730daf7 /Misc
parent2d8f06382e7d5a759ca554110a699a397114824a (diff)
downloadcpython-d757aaf9dd767d13205bf9917e520ebf43e7f6e5.zip
cpython-d757aaf9dd767d13205bf9917e520ebf43e7f6e5.tar.gz
cpython-d757aaf9dd767d13205bf9917e520ebf43e7f6e5.tar.bz2
bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-12-17-22-50-51.bpo-32356.roZJpA.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-17-22-50-51.bpo-32356.roZJpA.rst b/Misc/NEWS.d/next/Library/2017-12-17-22-50-51.bpo-32356.roZJpA.rst
new file mode 100644
index 0000000..84b5381
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-12-17-22-50-51.bpo-32356.roZJpA.rst
@@ -0,0 +1,2 @@
+asyncio.transport.resume_reading() and pause_reading() are now idempotent.
+New transport.is_reading() method is added.