This file is indexed.

/usr/lib/python3/dist-packages/pynzb/lxml_nzb.py is in python3-pynzb 0.1.0-3.

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
from pynzb.base import BaseETreeNZBParser, NZBFile, NZBSegment

try:
    from lxml import etree
except ImportError:
    raise ImportError("You must have lxml installed before you can use the " +
        "lxml NZB parser.")

import sys
if sys.version_info.major < 3:
    try:
        from io import StringIO
    except ImportError:
        from io import StringIO
    def as_io(xml): return StringIO(xml)
else:
    from io import BytesIO
    def as_io(xml): return BytesIO(bytes(xml, 'utf-8'))

class LXMLNZBParser(BaseETreeNZBParser):
    def get_etree_iter(self, xml, et=etree):
        return iter(et.iterparse(as_io(xml), events=("start", "end")))