mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
13 lines
289 B
Python
13 lines
289 B
Python
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__)
|