New submission from Yury Selivanov <yseliva...@gmail.com>: asyncio.gather can be made faster if:
1. we don't use functools.partial 2. create less intermittent collections 3. drop unnecessary code (e.g. gather has some code that's duplicated in ensure_future that it uses etc) The proposed PR makes asyncio.gather 10-15% faster on the attached benchmark. ---------- assignee: yselivanov components: asyncio files: t.py messages: 308508 nosy: asvetlov, yselivanov priority: normal severity: normal status: open title: Optimize asyncio.gather() type: performance versions: Python 3.7 Added file: https://bugs.python.org/file47336/t.py _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32355> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com