mirror of
https://github.com/python/cpython.git
synced 2026-06-01 00:59:47 -04:00
705f0f5a91
super(type) -> unbound super object
super(type, obj) -> bound super object; requires isinstance(obj, type)
Typical use to call a cooperative superclass method:
class C(B):
def meth(self, arg):
super(C, self).meth(arg);