084824f866
It's now possible to use the name "super" as a local variable.
10 lines
154 B
Python
10 lines
154 B
Python
# test using the name "super" as a local variable
|
|
|
|
class A:
|
|
def foo(self):
|
|
super = [1, 2]
|
|
super.pop()
|
|
print(super)
|
|
|
|
A().foo()
|