This file is indexed.

/usr/lib/python3/dist-packages/scss/setup.py is in python3-pyscss 1.3.5-2build2.

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 distutils.core import setup, Extension

setup(name='pyScss',
    version='1.1.1',
    description='pyScss',
    ext_modules=[
        Extension(
            '_scss',
            sources=['src/_scss.c', 'src/block_locator.c', 'src/scanner.c'],
            libraries=['pcre'],
            optional=True
        )
    ]
)