This file is indexed.

/usr/share/pyshared/pychess/Utils/IconLoader.py is in pychess 0.12~beta3-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
from gtk import icon_theme_get_default, ICON_LOOKUP_USE_BUILTIN
from pychess.System.Log import log

it = icon_theme_get_default()
def load_icon(size, *alternatives):
    alternatives = list(alternatives)
    name = alternatives.pop(0)
    try:
        return it.load_icon(name, size, ICON_LOOKUP_USE_BUILTIN)
    except:
        if alternatives:
            return load_icon(size, *alternatives)
        log.warn("no %s icon in icon-theme-gnome" % name)