This file is indexed.

/usr/share/pyshared/prelude.py is in python-prelude 1.0.0-7build1.

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
from _prelude import *

class PreludeError(Exception):
    def __init__(self, errno, strerror=None):
        self.errno = errno
        self._strerror = strerror

    def __str__(self):
        if self._strerror:
            return self._strerror
        return prelude_strerror(self.errno)