How can I revert back to the default function that python uses if there is no __str__ method?
class A :
def __str__(self) :
return "Something useless"
class B(A) :
def __str__(self) :
return some_magic_base_function(self)
|
|
|
|
|
|
|
You can use
This gives you the default output for instances of
|
||
|
|
|
|
"the default function that python uses if there is no
This holds whether |
||
|
|