This file is indexed.

/usr/lib/python2.7/dist-packages/networkx/algorithms/centrality/__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
from networkx.algorithms.centrality.betweenness import *
from networkx.algorithms.centrality.betweenness_subset import *
from networkx.algorithms.centrality.closeness import *
from networkx.algorithms.centrality.current_flow_closeness import *
from networkx.algorithms.centrality.current_flow_betweenness import *
from networkx.algorithms.centrality.current_flow_betweenness_subset import *
from networkx.algorithms.centrality.degree_alg import *
from networkx.algorithms.centrality.eigenvector import *
from networkx.algorithms.centrality.katz import *
from networkx.algorithms.centrality.load import *
from networkx.algorithms.centrality.communicability_alg import *
import networkx.algorithms.centrality.betweenness
import networkx.algorithms.centrality.closeness
import networkx.algorithms.centrality.current_flow_betweenness
import networkx.algorithms.centrality.current_flow_closeness
import networkx.algorithms.centrality.degree_alg
import networkx.algorithms.centrality.eigenvector
import networkx.algorithms.centrality.load
import networkx.algorithms.centrality.communicability_alg
import networkx.algorithms.centrality.katz