This file is indexed.

/usr/share/pyshared/martian/__init__.py is in python-martian 0.14-0ubuntu1.

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
from martian.core import (
    ModuleGrokker, MultiGrokker, MetaMultiGrokker, grok_dotted_name,
    grok_package, grok_module, GrokkerRegistry)
from martian.components import GlobalGrokker, ClassGrokker, InstanceGrokker
from martian.components import MethodGrokker
from martian.util import scan_for_classes
from martian.directive import Directive, MarkerDirective, MultipleTimesDirective
from martian.directive import (ONCE, ONCE_NOBASE, ONCE_IFACE,
                               MULTIPLE, MULTIPLE_NOBASE, DICT)
from martian.directive import CLASS, CLASS_OR_MODULE, MODULE
from martian.directive import UNKNOWN, UnknownError
from martian.directive import (
    validateText, validateInterface, validateClass, validateInterfaceOrClass)
from martian.martiandirective import component, directive, priority, baseclass
from martian.context import GetDefaultComponentFactory