This file is indexed.

/usr/lib/python2.7/dist-packages/migrate/tests/fixture/__init__.py is in python-migrate 0.10.0-3ubuntu2.

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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import testtools

def main(imports=None):
    if imports:
        global suite
        suite = suite(imports)
        defaultTest='fixture.suite'
    else:
        defaultTest=None
    return testtools.TestProgram(defaultTest=defaultTest)

from .base import Base
from .pathed import Pathed
from .shell import Shell
from .database import DB,usedb