This file is indexed.

/usr/lib/python3/dist-packages/importmagic/__init__.py is in python3-importmagic 0.1.7-1.

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
"""Python Import Magic - automagically add, remove and manage imports

This module just exports the main API of importmagic.
"""

__author__ = 'Alec Thomas <alec@swapoff.org>'
__version__ = '0.1.7'

from importmagic.importer import Import, Imports, get_update, update_imports
from importmagic.index import SymbolIndex
from importmagic.symbols import Scope