Guest User

Untitled

a guest
Dec 7th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. def sqrt(self, other):
  3. cdef bigint& temp_other = new bigint(other)
  4. cdef bigint temp_result = self.thisptr.sqrt(temp_other)
  5. result = Py_bigint()
  6. result.thisptr = &temp_result
  7. return result
Add Comment
Please, Sign In to add comment