This file is indexed.

/usr/lib/python2.7/dist-packages/networkx/generators/__init__.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
"""
A package for generating various graphs in networkx. 

"""
from networkx.generators.atlas import *
from networkx.generators.bipartite import *
from networkx.generators.classic import *
from networkx.generators.degree_seq import *
from networkx.generators.directed import *
from networkx.generators.ego import *
from networkx.generators.geometric import *
from networkx.generators.hybrid import *
from networkx.generators.line import *
from networkx.generators.random_graphs import *
from networkx.generators.small import *
from networkx.generators.stochastic import *
from networkx.generators.social import *
from networkx.generators.threshold import *
from networkx.generators.intersection import *
from networkx.generators.random_clustered import *