Subclass all base classes from `object`.
[pyyaml/python3.git] / tests / data / construct-python-object.code
blob7f1edf1254c3d0fbf12904ba1e1c778f44c5f892
2 AnObject(1, 'two', [3,3,3]),
3 AnInstance(1, 'two', [3,3,3]),
5 AnObject(1, 'two', [3,3,3]),
6 AnInstance(1, 'two', [3,3,3]),
8 AState(1, 'two', [3,3,3]),
9 ACustomState(1, 'two', [3,3,3]),
11 InitArgs(1, 'two', [3,3,3]),
12 InitArgsWithState(1, 'two', [3,3,3]),
14 NewArgs(1, 'two', [3,3,3]),
15 NewArgsWithState(1, 'two', [3,3,3]),
17 Reduce(1, 'two', [3,3,3]),
18 ReduceWithState(1, 'two', [3,3,3]),
20 MyInt(3),
21 MyList(3),
22 MyDict(3),