This file is indexed.

/usr/share/pyshared/wimpiggy/test_get_modifier_mappings.py is in python-wimpiggy 0.0.7.36+dfsg-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
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/usr/bin/env python
# This file is part of Parti.
# Copyright (C) 2011, 2012 Antoine Martin <antoine@nagafix.co.uk>

import pygtk
pygtk.require('2.0')
import gtk.gdk

from wimpiggy.lowlevel import get_modifier_mappings		#@UnresolvedImport

def main():
	mappings = get_modifier_mappings()
	print("mappings=%s" % mappings)

if __name__ == "__main__":
	main()