You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently hardcode the TraitListEvent class name in TraitListEvent.__repr__; instead, we should use self.__class__.__name__, so that subclasses don't have a misleading __repr__. See
We currently hardcode the
TraitListEvent
class name inTraitListEvent.__repr__
; instead, we should useself.__class__.__name__
, so that subclasses don't have a misleading__repr__
. Seetraits/traits/trait_list_object.py
Line 57 in 786a39e
I haven't checked other
__repr__
s, but we will almost certainly need to updateTraitDictEvent
andTraitSetEvent
similarly, and possibly others, too.Ref: enthought/envisage#352
The text was updated successfully, but these errors were encountered: