Repository URL to install this package:
def test(): """ >>> test() == 55 + 66 True """ cdef int a,b cdef object foo = (55,66) a,b = foo return a + b