diff options
author | Yury Selivanov <yury@magic.io> | 2017-12-18 01:19:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-18 01:19:47 (GMT) |
commit | 1b7c11ff0ee3efafbf5b38c3c6f37de5d63efb81 (patch) | |
tree | 5e6752a06d700ac910fcba551cf25d975c615f1d /Misc | |
parent | 4c72bc4a38eced10a55ba7071e084b26a2b5ed4b (diff) | |
download | cpython-1b7c11ff0ee3efafbf5b38c3c6f37de5d63efb81.zip cpython-1b7c11ff0ee3efafbf5b38c3c6f37de5d63efb81.tar.gz cpython-1b7c11ff0ee3efafbf5b38c3c6f37de5d63efb81.tar.bz2 |
bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-12-16-18-50-57.bpo-32348.5j__he.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-16-18-50-57.bpo-32348.5j__he.rst b/Misc/NEWS.d/next/Library/2017-12-16-18-50-57.bpo-32348.5j__he.rst new file mode 100644 index 0000000..b3618db --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-12-16-18-50-57.bpo-32348.5j__he.rst @@ -0,0 +1,2 @@ +Optimize asyncio.Future schedule/add/remove callback. The optimization +shows 3-6% performance improvements of async/await code. |