aboutsummaryrefslogtreecommitdiff
path: root/tests/basics/builtin_type.py
blob: 83c45c64b9ad80229fa8d9c584759e045d3ae4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# test builtin type

print(type(int))

try:
    type()
except TypeError:
    print('TypeError')

try:
    type(1, 2)
except TypeError:
    print('TypeError')