about OrderedSet / changeset 2298

Issue #463 resolved
Former user created an issue

it calls base-class' methods via base_class.method, in the case, Set.method(). Nothing bad about it, BUT, when one replaces Set with OrderedSet to get repeatability, those calls become infinite recursion.

So the super(OrderedSet,self).method(...) - which i despise... this is set-super-diff.

same thing would apply to OrderedDict over Dict (=dict by default)

btw, the util does not need to import anything but sets, thread*, builtin. this is super2-diff - combined with other.

Comments (1)

  1. Log in to comment