This file is indexed.

/usr/lib/python2.7/dist-packages/circuits/core/__init__.py is in python-circuits 3.1.0+ds1-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
19
20
21
22
23
24
25
26
27
28
29
30
31
# Package:  core
# Date:     2nd April 2006
# Author:   James Mills, prologic at shortcircuit dot net dot au

"""Core

This package contains the essential core parts of the circuits framework.
"""


from .events import Event
from .bridge import Bridge
from .loader import Loader
from .manager import Manager, TimeoutError
from .handlers import handler, reprhandler
from .components import BaseComponent, Component

from .values import Value

from .timers import Timer

from .workers import task, Worker

from .debugger import Debugger

__all__ = (
    "handler", "BaseComponent", "Component", "Event", "task",
    "Worker", "Bridge", "Debugger", "Timer", "Manager", "TimeoutError",
)

# flake8: noqa