Pythonic style/preference question:  For strictly Python 3 code, is
there any preference for

class MyClass:
    pass

versus the more explicit

class MyClass(object):
    pass

?

TIA!

-- 
boB
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to