This file is indexed.

/usr/share/rurple-ng/rurple/share.py is in rurple-ng 0.5+16-1.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
from __future__ import division, print_function, unicode_literals, with_statement

import sys
import os
import os.path
import wx

def _toPath(n):
    return os.path.abspath(unicode(n, sys.getfilesystemencoding()))

def _topPath():
    if hasattr(sys, "frozen"):
        return os.path.dirname(_toPath(sys.executable))
    else:
        return os.path.dirname(os.path.dirname(_toPath(__file__)))

_sharePath = os.path.join(_topPath(), "share")
    
def path(*a):
    return os.path.join(_sharePath, *a)

def toBitmap(name):
    return wx.Image(path('images', '%s.png' % name), wx.BITMAP_TYPE_PNG).ConvertToBitmap()

__all__ = [path, toBitmap]