This file is indexed.

/usr/share/pyshared/RestrictedPython/tests/unpack.py is in python-restrictedpython 3.6.0-0ubuntu4.

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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# A series of short tests for unpacking sequences.

def u1(L):
    x, y = L
    assert x == 1
    assert y == 2

u1([1,2])
u1((1, 2))

def u1a(L):
    x, y = L
    assert x == '1'
    assert y == '2'

u1a("12")

try:
    u1([1])
except ValueError:
    pass
else:
    raise AssertionError, "expected 'unpack list of wrong size'"

def u2(L):
    x, (a, b), y = L
    assert x == 1
    assert a == 2
    assert b == 3
    assert y == 4

u2([1, [2, 3], 4])
u2((1, (2, 3), 4))

try:
    u2([1, 2, 3])
except TypeError:
    pass
else:
    raise AssertionError, "expected 'iteration over non-sequence'"

def u3((x, y)):
    assert x == 'a'
    assert y == 'b'
    return x, y

u3(('a', 'b'))

def u4(x):
    (a, b), c = d, (e, f) = x
    assert a == 1 and b == 2 and c == (3, 4)
    assert d == (1, 2) and e == 3 and f == 4

u4( ((1, 2), (3, 4)) )

def u5(x):
    try:
        raise TypeError(x)
    # This one is tricky to test, because the first level of unpacking
    # has a TypeError instance.  That's a headache for the test driver.
    except TypeError, [(a, b)]:
        assert a == 42
        assert b == 666

u5([42, 666])

def u6(x):
    expected = 0
    for i, j in x:
        assert i == expected
        expected += 1
        assert j == expected
        expected += 1

u6([[0, 1], [2, 3], [4, 5]])

def u7(x):
    stuff = [i + j for toplevel, in x for i, j in toplevel]
    assert stuff == [3, 7]

u7( ([[[1, 2]]], [[[3, 4]]]) )