This file is indexed.

/usr/share/pyshared/axiom/test/oldobsolete.py is in python-axiom 0.6.0-3.

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
# -*- test-case-name: axiom.test.test_upgrading.DeletionTest.testPowerups -*-

from axiom.item import Item
from axiom.attributes import integer

class Obsolete(Item):
    """
    This is an obsolete class that will be destroyed in the upcoming version.
    """
    typeName = 'test_upgrading_obsolete'
    nothing = integer()