This file is indexed.

/usr/share/pyshared/pyarco/fs.py is in atheist 0.20110402-2.

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
#!/usr/bin/python
# -*- coding:utf-8; tab-width:4; mode:python -*-

import os

class ActualFileSystem:

    def open(self, fname, mode='r'):
        return open(fname, mode)

    def mkdir(self, path):
        os.mkdir(path)