mirror of
https://github.com/pybind/pybind11.git
synced 2026-04-19 14:29:11 +00:00
13 lines
262 B
Python
13 lines
262 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()))
|
|
print(type(return_class_2()))
|
|
print(type(return_none()))
|