mirror of https://github.com/pybind/pybind11
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
12 lines
289 B
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 |
|
|
|
print(type(return_class_1()).__name__) |
|
print(type(return_class_2()).__name__) |
|
print(type(return_none()).__name__)
|
|
|