This file is indexed.

/usr/lib/python3/dist-packages/scss/grammar/__init__.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
"""Grammar and parser plumbing for Sass.  Much of this is generated or compiled
in some fashion.
"""
from .scanner import NoMoreTokens
from .scanner import Parser
from .scanner import Scanner
from .scanner import locate_blocks

__all__ = ('NoMoreTokens', 'Parser', 'Scanner', 'locate_blocks')