example-inheritance.py 289 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
from __future__ import print_function
import sys

sys.path.append('.')

from example import return_class_1
from example import return_class_2
from example import return_none

Wenzel Jakob's avatar
Wenzel Jakob committed
10
11
12
print(type(return_class_1()).__name__)
print(type(return_class_2()).__name__)
print(type(return_none()).__name__)