Initial import to Tizen
[profile/ivi/python-twisted.git] / doc / core / howto / listings / trial / calculus / base_1.py
1 # -*- test-case-name: calculus.test.test_base_1 -*-
2
3
4
5 class Calculation(object):
6     def add(self, a, b):
7         pass
8
9     def subtract(self, a, b):
10         pass
11
12     def multiply(self, a, b):
13         pass
14
15     def divide(self, a, b):
16         pass