summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/class_dict.py
blob: f80ded678b0f88c26d505e71bdab7095d1507bc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# test __dict__ attribute of a class

if not hasattr(int, "__dict__"):
    print("SKIP")
    raise SystemExit


# dict of a built-in type
print("from_bytes" in int.__dict__)


# dict of a user class
class Foo:
    a = 1
    b = "bar"


d = Foo.__dict__
print(d["a"], d["b"])