This file is indexed.

/usr/lib/python2.7/dist-packages/chartkick/__init__.py is in python-chartkick 0.5.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
from __future__ import absolute_import
import os

VERSION = (0, 5, 0)
__version__ = '.'.join(map(str, VERSION))


def js():
    "returns home directory of js"
    return os.path.join(os.path.dirname(os.path.abspath(__file__)), 'js')