[issue23548] TypeError in event loop finalizer, new in Python 3.4.3

STINNER Victor report at bugs.python.org
Sun Mar 1 14:26:49 CET 2015


STINNER Victor added the comment:

I'm aware of the issue but I would prefer to not fix it.

The first problem is that you didn't close the event loop. I modified
recently the doc to explain at the begining that you should develop in the
debug mode. In this mode, you will see a warning if you don't close
explicitly the event loop.

The signal issue is that the event loop is closed very late during Python
finalization, and attributes of the signal module are already cleared.

Are you ok to not workaround this specific issue?

Closing an event loop implicitly late can lead to other various bugs.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue23548>
_______________________________________


More information about the Python-bugs-list mailing list