This file is indexed.

/usr/lib/python2.7/dist-packages/networkx/version.py is in python-networkx 1.8.1-0ubuntu3.

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
"""
Version information for NetworkX, created during installation.

Do not add this file to the repository.

"""

import datetime

version = '1.8.1'
date = 'Sun Aug  4 07:56:54 2013'

# Was NetworkX built from a development version? If so, remember that the major
# and minor versions reference the "target" (rather than "current") release.
dev = False

# Format: (name, major, min, revision)
version_info = ('networkx', '1', '8.1', None)

# Format: a 'datetime.datetime' instance
date_info = datetime.datetime(2013, 8, 4, 7, 56, 54, 416491)

# Format: (vcs, vcs_tuple)
vcs_info = (None, (None, None))