Scarab
v2.11.1
Project 8 C++ Utility Library
library
external
pybind11
tests
test_embed
test_interpreter.py
Go to the documentation of this file.
1
from
widget_module
import
Widget
2
3
4
class
DerivedWidget
(Widget):
5
def
__init__
(self, message):
6
super(DerivedWidget, self).
__init__
(message)
7
8
def
the_answer
(self):
9
return
42
test_interpreter.DerivedWidget.the_answer
def the_answer(self)
Definition:
test_interpreter.py:8
test_interpreter.DerivedWidget
Definition:
test_interpreter.py:4
test_interpreter.DerivedWidget.__init__
def __init__(self, message)
Definition:
test_interpreter.py:5
Generated by
1.8.13