Scarab  2.8.1
Project 8 C++ Utility Library
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