This file is indexed.

/usr/lib/python3/dist-packages/astor/__init__.py is in python3-astor 0.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
# -*- coding: utf-8 -*-
"""
Part of the astor library for Python AST manipulation.

License: 3-clause BSD

Copyright 2012 (c) Patrick Maupin
Copyright 2013 (c) Berker Peksag

"""

__version__ = '0.4'

from .codegen import to_source  # NOQA
from .misc import iter_node, dump, all_symbols, get_anyop  # NOQA
from .misc import get_boolop, get_binop, get_cmpop, get_unaryop  # NOQA
from .misc import ExplicitNodeVisitor  # NOQA
from .misc import parsefile, CodeToAst, codetoast  # NOQA
from .treewalk import TreeWalk  # NOQA