DEBSOURCES
Skip Quicknav
sources / nose / 1.3.7-9 / functional_tests / support / package2 / maths.py
1234567891011
def add(a, b): return a + b def div(a, b): return a // b def minus(a, b): return a - b def mult(a, b): return a * b