This file is indexed.

/usr/lib/python2.7/dist-packages/zmq/tests/test_ssh.py is in python-zmq 16.0.2-2build2.

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
from zmq.ssh.tunnel import select_random_ports

def test_random_ports():
    for i in range(4096):
        ports = select_random_ports(10)
        assert len(ports) == 10
        for p in ports:
            assert ports.count(p) == 1