/usr/lib/python2.7/dist-packages/cypari2/convert.pxd is in python-cypari2 1.1.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from .types cimport GEN
from .gen cimport Gen
cpdef integer_to_gen(x)
cpdef gen_to_integer(Gen x)
cpdef gen_to_python(Gen z)
cdef GEN gtoi(GEN g0) except NULL
cdef GEN PyLong_AsGEN(x)
cdef PyLong_FromGEN(GEN g)
cdef Gen new_t_POL_from_int_star(int* vals, unsigned long length, long varnum)
cdef Gen new_gen_from_double(double)
cdef Gen new_t_COMPLEX_from_double(double re, double im)
|