This file is indexed.

/usr/share/pyshared/messaging/sms/pdu.py is in python-messaging 0.5.11+debian-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
# see LICENSE


class Pdu(object):

    def __init__(self, pdu, len_smsc, cnt=1, seq=1):
        self.pdu = pdu.upper()
        self.length = len(pdu) / 2 - len_smsc
        self.cnt = cnt
        self.seq = seq