This file is indexed.

/usr/share/quickly/templates/ubuntu-application/store/__init__.py is in quickly-ubuntu-template 12.08.1-0ubuntu2.

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
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# This file is in the public domain
### END LICENSE

import glob as _glob
import os as _os

_here = _os.path.dirname(__file__)
_paths = _glob.glob(_os.path.join(_here, '*.py'))
_filenames = [_os.path.basename(_x) for _x in _paths if _os.path.basename(_x)[0] != '_']
_no_ext = [_os.path.splitext(_x) for _x in _filenames]

__all__ = [_x[0] for _x in _no_ext]