Hi,

The coding in line 104:

    self._sender[type].delete(i)

is wrong. It should be:
    del self._sender[type][i]
   
and for efficiency the next line could be:
    del self._listeners[type][i]

    

-- 



Reply via email to