This file is indexed.

/usr/lib/python2.7/dist-packages/setuptools_scm/hacks.py is in python-setuptools-scm 1.15.0-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
import os
from .utils import data_from_mime, trace
from .version import meta


def parse_pkginfo(root):

    pkginfo = os.path.join(root, 'PKG-INFO')
    trace('pkginfo', pkginfo)
    data = data_from_mime(pkginfo)
    version = data.get('Version')
    if version != 'UNKNOWN':
        return meta(version)