blob: 400cbb9209156bead49049b66af2ab6e298482b9 (
plain)
1
2
3
4
5
6
7
8
9
|
def super():
print("I am evil, you are NOT calling the supermethod!")
class C(object):
def __init__(self):
super().__init__()
if __name__ == '__main__':
c = C() # prints "I am evil, you are NOT calling the supermethod!"
|