This file is indexed.

/usr/lib/python2.7/dist-packages/goocalendar/__init__.py is in python-goocalendar 0.3-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
# This file is part of GooCalendar.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import goocanvas
import pango

if not hasattr(goocanvas, 'Text'):
    goocanvas.Text = goocanvas.CanvasText

if hasattr(pango, 'Rectangle'):
    def getitem(self, i):
        return [self.x, self.y, self.width, self.height][i]
    pango.Rectangle.__getitem__ = getitem

from ._calendar import Calendar
from ._event import Event, EventStore

__all__ = ['Calendar', 'EventStore', 'Event']
__version__ = '0.3'