Source code for test_package.test_package

# -*- coding: utf-8 -*-
import numpy as np


[docs]def foo(a, b): """ Add a and b and return the answer. For example, >>> foo(4,3) 7 """ return np.sum([a, b])