]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH-9641)
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Sun, 30 Sep 2018 05:28:40 +0000 (08:28 +0300)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 30 Sep 2018 05:28:40 +0000 (22:28 -0700)
commitd5bd036138881bb90a803397d992870a46fbdc2d
tree5375a0724482a249efa43a963d55ddf9ba9ec709
parentdf8101517aa1c917fdf8aeb466e480c26d4e878c
bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH-9641)

The waiting is pretty normal for any asyncio program, logging its time just adds
a noise to logs without any useful information provided.

https://bugs.python.org/issue34849
Lib/asyncio/base_events.py
Lib/test/test_asyncio/test_base_events.py
Misc/NEWS.d/next/Library/2018-09-30-08-08-14.bpo-34849.NXK9Ff.rst [new file with mode: 0644]