/usr/share/pyshared/quixote/ptl/ptlrun.py is in python-quixote 2.7~b2-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 | #!/usr/bin/env python
import sys
from quixote.ptl.ptl_compile import compile_template
if __name__ == '__main__':
exec compile_template(open(sys.argv[1]), sys.argv[1])
|