All pastes #2065989 Raw Edit

Something

public text v1 · immutable
#2065989 ·published 2011-05-20 21:10 UTC
rendered paste body
    def sqrt(self, other):
        cdef bigint& temp_other = new bigint(other)
        cdef bigint temp_result = self.thisptr.sqrt(temp_other)
        result = Py_bigint()
        result.thisptr = &temp_result
        return