This file is indexed.

/usr/lib/python2.7/dist-packages/path_and_address/__init__.py is in python-path-and-address 2.0.1-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
16
17
18
19
20
21
"""
Path-and-Address
----------------

Functions for command-line server tools used by humans.

:copyright: (c) 2012-2016 by Joe Esposito.
:license: MIT, see LICENSE for more details.
"""

__version__ = '2.0.1'


from .parsing import resolve, split_address
from .validation import valid_address, valid_hostname, valid_port


__all__ = [
    'resolve', 'split_address', 'valid_address', 'valid_hostname',
    'valid_port',
]