Commit 057d0561 by Wenzel Jakob

fix testcases on Python 3.x

parent d7efa4ff
......@@ -7,6 +7,6 @@ from example import return_class_1
from example import return_class_2
from example import return_none
print(type(return_class_1()))
print(type(return_class_2()))
print(type(return_none()))
print(type(return_class_1()).__name__)
print(type(return_class_2()).__name__)
print(type(return_none()).__name__)
<class 'example.DerivedClass1'>
<class 'example.DerivedClass2'>
<type 'NoneType'>
DerivedClass1
DerivedClass2
NoneType
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment