This file is indexed.

/usr/share/pyshared/quixote/demo/__init__.py is in python-quixote 2.7~b2-1+b2.

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
from quixote import enable_ptl
from quixote.publish import Publisher
enable_ptl()

def create_publisher():
    from quixote.demo.root import RootDirectory
    return Publisher(RootDirectory(), display_exceptions='plain')