This file is indexed.

/usr/lib/python2.7/dist-packages/bjsonrpc/__init__.py is in python-bjsonrpc 0.2.0-2.

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
32
33
34
35
36
37
38
""" 
    Copyright (c) 2010 David Martinez Marti
    All rights reserved.

    Licensed under 3-clause BSD License. 
    See LICENSE.txt for the full license text.

"""

__version__ = '0.2'
__release__ = '0.2.0'


__all__ = [
    "createserver",
    "connect",
    "server",
    "connection",
    "request",
    "handlers",
    "proxies",
    "jsonlib",
    "exceptions"
]

bjsonrpc_options = {
    'threaded' : False
}

from bjsonrpc.main import createserver, connect

import bjsonrpc.server
import bjsonrpc.connection
import bjsonrpc.request
import bjsonrpc.handlers
import bjsonrpc.proxies
import bjsonrpc.jsonlib
import bjsonrpc.exceptions