rothloup

Results 3 issues of rothloup

Server().__init__ appears to have no call to super(), which breaks MRO when creating a class user Server() as one of several baseclasses (multiple inheritance). This can break other class's code...

Added calls in object __init__() methods to super() to support python's MRO. Addresses Issue #22.

If multiple receivers are connected to the same signal from the same sender, and one of those receivers disconnects itself upon receiving the signal, this will the next receiver to...