You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
289 B

  1. from __future__ import print_function
  2. import sys
  3. sys.path.append('.')
  4. from example import return_class_1
  5. from example import return_class_2
  6. from example import return_none
  7. print(type(return_class_1()).__name__)
  8. print(type(return_class_2()).__name__)
  9. print(type(return_none()).__name__)