This file is indexed.

/usr/lib/python2.7/dist-packages/freezegun/__init__.py is in python-freezegun 0.3.7-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
# -*- coding: utf-8 -*-
"""
freezegun
~~~~~~~~

:copyright: (c) 2012 by Steve Pulec.

"""
from .api import freeze_time

__title__ = 'freezegun'
__version__ = '0.3.7'
__author__ = 'Steve Pulec'
__license__ = 'Apache License 2.0'
__copyright__ = 'Copyright 2012 Steve Pulec'


__all__ = ["freeze_time"]