This file is indexed.

/usr/share/inkscape/extensions/text_lowercase.py is in inkscape 0.48.5-3.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#! /usr/bin/python

import chardataeffect, inkex, string

class C(chardataeffect.CharDataEffect):
  def process_chardata(self,text, line=False, par=False):
    return text.lower()

c = C()
c.affect()