This file is indexed.

/usr/share/pyshared/grokcore/component/tests/order/arg_orderdirective.py is in python-grokcore.component 2.5-0ubuntu1.

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
"""
If the grok.order directive is present with arguments, sorting will be
done by the order specified.

  >>> from grokcore.component import sort_components

  >>> components = [First(), Second(), Third(), Fourth(), Fifth()]
  >>> sort_components(components)
  [<...Fifth object at ...>,
   <...Fourth object at ...>,
   <...Third object at ...>,
   <...Second object at ...>,
   <...First object at ...>]

You can use the key option:

  >>> from operator import itemgetter

  >>> components = [(1, First()), (2, Second()), (3, Third())]
  >>> sort_components(components, key=itemgetter(1))
  [(3, <...Third object at ...>),
   (2, <...Second object at ...>),
   (1, <...First object at ...>)]

"""

import grokcore.component as grok

class First(object):
    grok.order(5)

class Second(object):
    grok.order(4)

class Third(object):
    grok.order(3)

class Fourth(object):
    grok.order(2)

class Fifth(object):
    grok.order(1)