Comment 31 for bug 2042744

Revision history for this message
git.user (git.user) wrote :

Seems like it's a weakref black magic. wr is dead when _removeHandlerRef called
It's too much for me, I just hack it out:
def _removeHandlerRef(wr):
    """
...
    if wr() is None:
        return
...