This file is indexed.

/usr/lib/python2.7/dist-packages/apptools/naming/adapter/trait_list_context_adapter_factory.py is in python-apptools 4.3.0-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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
""" Context adapter factory for trait lists. """


# Enthought library imports.
from apptools.naming.api import ContextAdapterFactory
from traits.api import Str, TraitList

# Local imports.
from trait_list_context_adapter import TraitListContextAdapter


class TraitListContextAdapterFactory(ContextAdapterFactory):
    """ Context adapter factoryfor Python trait lists. """

    #### 'ContextAdapterFactory' interface ####################################

    # The type of object that we adapt.
    adaptee_class = TraitList

    #### 'TraitListContextAdapterFactory' interface ###########################

    # The name of the trait (on the adaptee) that provides the trait list.
    trait_name = Str

    ###########################################################################
    # Protected 'AbstractAdapterFactory' interface.
    ###########################################################################

    def _adapt(self, adaptee, target_class, environment, context):
        """ Returns an adapter that adapts an object to the target class. """

        adapter = TraitListContextAdapter(
            adaptee     = adaptee,
            environment = environment,
            context     = context,
            trait_name  = self.trait_name
        )

        return adapter

#### EOF ######################################################################