This file is indexed.

/usr/lib/python2.7/dist-packages/cypari2/gen.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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from .types cimport *
cimport cython


cdef class Gen_auto:
    # The actual PARI GEN
    cdef GEN g

    # Chunk of memory containing g, typically allocated in
    # deepcopy_to_python_heap().
    cdef void* chunk

    # Parent Gen: this is usually None, but it can be used when this
    # Gen is a part of some other Gen. In that case, chunk will be NULL
    # because the parent has allocated the memory.
    cdef Gen_auto parent

    # A cache for __getitem__. Initially, this is None but it will be
    # turned into a dict when needed. This is not just an optional
    # cache, but it is required to implement __setitem__ correctly:
    # __setitem__ will set an entry of one Gen to another Gen. To
    # prevent Python from garbage collecting the other Gen, we must put
    # it in itemcache.
    cdef dict itemcache

    cdef inline int cache(self, key, value) except -1:
        """Add ``(key, value)`` to ``self.itemcache``."""
        if self.itemcache is None:
            self.itemcache = {key: value}
        else:
            self.itemcache[key] = value

@cython.final
cdef class Gen(Gen_auto):
    cdef new_ref(self, GEN g)

cdef Gen list_of_Gens_to_Gen(list s)
cpdef Gen objtogen(s)