This file is indexed.

/usr/lib/python3/dist-packages/geopy/__init__.py is in python3-geopy 0.95.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
from geopy.point import Point
from geopy.location import Location
from geopy import geocoders

VERSION = (0, 95, 1)

def get_version():
    version = '%s.%s' % (VERSION[0], VERSION[1])
    if VERSION[2]:
        version = '%s.%s' % (version, VERSION[2])
    if VERSION[3:]:
        version = '%s.%s' % (version, VERSION[3])
    return version