This file is indexed.

/usr/share/doc/python-dnspython/examples/e164.py is in python-dnspython 1.15.0-1.

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
#!/usr/bin/env python

from __future__ import print_function

import dns.e164
n = dns.e164.from_e164("+1 555 1212")
print(n)
print(dns.e164.to_e164(n))