1
0
mirror of https://github.com/pybind/pybind11.git synced 2025-03-02 06:42:45 +00:00
pybind11/tests/test_embed/test_interpreter.py
2020-07-20 13:35:21 -04:00

11 lines
219 B
Python

# -*- coding: utf-8 -*-
from widget_module import Widget
class DerivedWidget(Widget):
def __init__(self, message):
super(DerivedWidget, self).__init__(message)
def the_answer(self):
return 42