This file is indexed.

/usr/share/pyshared/xlwt/__init__.py is in python-xlwt 0.7.2+debian1-2build1.

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
# -*- coding: windows-1252 -*-

__VERSION__ = '0.7.2'

import sys
if sys.version_info[:2] < (2, 3):
    print >> sys.stderr, "Sorry, xlwt requires Python 2.3 or later"
    sys.exit(1)

from Workbook import Workbook
from Worksheet import Worksheet
from Row import Row
from Column import Column
from Formatting import Font, Alignment, Borders, Pattern, Protection
from Style import XFStyle, easyxf
from ExcelFormula import *