This file is indexed.

/usr/lib/python2.7/dist-packages/mx/DateTime/mxDateTime/testpytimedelta.py is in python-egenix-mxdatetime 3.2.9-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
from mx.DateTime import now, TimeDelta

if 0:
    # Force import of the datetime module
    d = now()
    d.pydate()

td = TimeDelta(3)
print td
td1 = td.rebuild()
print td1
pytime = td.pytime()
print pytime
pydelta = td.pytimedelta()
print pydelta