On Tue, 1 Apr 2014 13:28:53 -0500 Zachary Ware <[email protected]> wrote: > > @@ -524,7 +521,7 @@ > > skip = set() > > for klass in default_classes: > > for check in handlers: > > - if isclass(check): > > + if instance(check, type): > > Should be isinstance, should it not?
Sounds like a well-tested code path :-) Regards Antoine. _______________________________________________ Python-Dev mailing list [email protected] https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
