diff options
author | Victor K <hellysmile@gmail.com> | 2017-10-05 16:04:39 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2017-10-05 16:04:39 (GMT) |
commit | 4d071897880b7e84e1a217ebe19971c118316970 (patch) | |
tree | 51656b5e3e40004a2a8d4251ebdb013723bbce54 /Misc | |
parent | 11045c9d8a21dd9bd182a3939189db02815f9783 (diff) | |
download | cpython-4d071897880b7e84e1a217ebe19971c118316970.zip cpython-4d071897880b7e84e1a217ebe19971c118316970.tar.gz cpython-4d071897880b7e84e1a217ebe19971c118316970.tar.bz2 |
bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-09-22-23-48-49.bpo-31556.9J0u5H.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-09-22-23-48-49.bpo-31556.9J0u5H.rst b/Misc/NEWS.d/next/Library/2017-09-22-23-48-49.bpo-31556.9J0u5H.rst new file mode 100644 index 0000000..2e6b028 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-09-22-23-48-49.bpo-31556.9J0u5H.rst @@ -0,0 +1 @@ +Cancel asyncio.wait_for future faster if timeout <= 0 |