[issue42644] logging.disable('WARN') breaks AsyncIO
OverLordGoldDragon added the comment: Everything's in the linked issue; in summary, the command kills IPython, and an IPython maintainer showed code suggesting the problem's rooted in CPython's improper handling of 'WARN'
[issue42644] logging.disable('WARN') breaks AsyncIO
New submission from OverLordGoldDragon : import logging with logging.disable('WARN'): pass See: https://github.com/ipython/ipython/issues/12713 I'm not actually sure what's happening here, just reporting. -- components: asyncio messages: 383040 nosy: OverLord