/usr/lib/python2.7/dist-packages/cypari2/cypari.h 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 | /*
* Additional macros and fixes for the PARI headers. This is meant to
* be included after including <pari/pari.h>
*/
#undef coeff /* Conflicts with NTL (which is used by SageMath) */
/* Array element assignment */
#define set_gel(x, n, z) (gel(x,n) = z)
#define set_gmael(x, i, j, z) (gmael(x,i,j) = z)
#define set_gcoeff(x, i, j, z) (gcoeff(x,i,j) = z)
#define set_uel(x, n, z) (uel(x,n) = z)
|