This file is indexed.

/usr/share/quickly/templates/ubuntu-application/project_root/python/camel_case_nameWindow.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
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# This file is in the public domain
### END LICENSE

from locale import gettext as _

from gi.repository import Gtk # pylint: disable=E0611
import logging
logger = logging.getLogger('python_name')

from python_name_lib import Window
from python_name.Aboutcamel_case_nameDialog import Aboutcamel_case_nameDialog
from python_name.Preferencescamel_case_nameDialog import Preferencescamel_case_nameDialog

# See python_name_lib.Window.py for more details about how this class works
class camel_case_nameWindow(Window):
    __gtype_name__ = "camel_case_nameWindow"
    
    def finish_initializing(self, builder): # pylint: disable=E1002
        """Set up the main window"""
        super(camel_case_nameWindow, self).finish_initializing(builder)

        self.AboutDialog = Aboutcamel_case_nameDialog
        self.PreferencesDialog = Preferencescamel_case_nameDialog

        # Code for other initialization actions should be added here.