This file is indexed.

/usr/lib/python2.7/dist-packages/nevow/test/test_tabbedpane.py is in python-nevow 0.14.2-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
# Copyright (c) 2009 Divmod.  See LICENSE for details.

"""
Tests for L{nevow.taglibrary.tabbedPane}.
"""

from twisted.trial.unittest import TestCase


class TabbedPaneTests(TestCase):
    def test_import(self):
        """
        L{nevow.taglibrary.tabbedPane} can be imported.

        This is a very meager test, and it should certainly be augmented
        with friends later, but for the time being, it is sufficient to
        cover the fix I am making, which actually makes the module
        importable. -exarkun
        """
        import nevow.taglibrary.tabbedPane