This file is indexed.

/usr/share/doc/python-egenix-mxstack-doc/README.Debian is in python-egenix-mxstack-doc 3.2.8-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
11
12
13
14
The python*-egenix-mx* packages supersede the old python-mx* packages
found in earlier Debian versions.

A notable difference:

The modules (e.g. DateTime) now have the prefix "mx." in the
namespace.  So, for example, if you have used the old DateTime module
in a program, you should instead use mx.Datetime.  E.g.:

    # Old:
    import DateTime

    # New:
    from mx import DateTime