cppyabm
1.0.17
An agent-based library to integrate C++ and Python
examples
Cppy
build
_deps
pybind11-src
tests
test_embed
test_interpreter.py
Go to the documentation of this file.
1
# -*- coding: utf-8 -*-
2
from
widget_module
import
Widget
3
4
5
class
DerivedWidget
(Widget):
6
def
__init__
(self, message):
7
super(DerivedWidget, self).
__init__
(message)
8
9
def
the_answer
(self):
10
return
42
test_interpreter.DerivedWidget.__init__
def __init__(self, message)
Definition:
test_interpreter.py:6
test_interpreter.DerivedWidget
Definition:
test_interpreter.py:5
test_interpreter.DerivedWidget.the_answer
def the_answer(self)
Definition:
test_interpreter.py:9
Generated by
1.8.19