This file is indexed.

/usr/lib/python3/dist-packages/networkx/algorithms/connectivity/__init__.py is in python3-networkx 1.11-1ubuntu2.

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
"""Connectivity and cut algorithms
"""
from .connectivity import *
from .cuts import *
from .kcomponents import *
from .kcutsets import *
from .stoerwagner import *
from .utils import *

__all__ = sum([connectivity.__all__,
               cuts.__all__,
               kcomponents.__all__,
               kcutsets.__all__,
               stoerwagner.__all__,
               utils.__all__,
              ], [])