This file is indexed.

/usr/lib/python2.7/dist-packages/pyth/__init__.py is in python-pyth 0.6.0-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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""
Pyth -- Python text markup and conversion
"""

import os.path

__version__ = '0.5.6'

writerMap = {
    '.rtf': 'pyth.plugins.rtf15.writer.Rtf15Writer',
    '.html': 'pyth.plugins.xhtml.writer.XHTMLWriter',
    '.xhtml': 'pyth.plugins.xhtml.writer.XHTMLWriter',
    '.txt': 'pyth.plugins.plaintext.writer.PlaintextWriter',
    '.pdf': 'pyth.plugins.pdf.writer.PDFWriter',
}


mimeMap = {
    '.rtf': 'application/rtf',
    '.html': 'text/html',
    '.xhtml': 'application/xhtml+xml',
    '.txt': 'text/plain',
}



def write(doc, filename):
    ext = os.path.splitext(filename)[1]
    writer = namedObject(writerMap[ext])
    buff = writer.write(doc)
    buff.seek(0)
    return (buff, mimeMap[ext])


# Stolen from twisted.python.reflect

def namedModule(name):
    """Return a module given its name."""
    topLevel = __import__(name)
    packages = name.split(".")[1:]
    m = topLevel
    for p in packages:
        m = getattr(m, p)
    return m


def namedObject(name):
    """Get a fully named module-global object.
    """
    classSplit = name.split('.')
    module = namedModule('.'.join(classSplit[:-1]))
    return getattr(module, classSplit[-1])