This file is indexed.

/usr/share/doc/libxdmf-dev/examples/Python/XdmfDOMTest3.py is in libxdmf-dev 3.0+git20160803-4.

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
11
12
13
14
#!/bin/env python

from __future__ import print_function
from Xdmf import *

d = XdmfDOM()
root = d.Create()
dm = d.InsertNew(root, 'Domain')
g = d.InsertNew(dm, 'Grid')
geo = d.InsertNew(g, 'Geometry')
ds  = d.InsertNew(geo, 'DataStructure')
print (d.Serialize(root))

d.Write('junk.xmf')