summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/builtin_super.py
blob: 5f7c3ae017e7e7849ce9d040387f092d93544b33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Check that super rejects invalid arguments.
try:
    super(str, 0)
except TypeError:
    print("TypeError")

try:
    super(str, int)
except TypeError:
    print("TypeError")

try:
    super(0, int)
except TypeError:
    print("TypeError")