This file is indexed.

/usr/lib/python2.7/dist-packages/numba/macro.py is in python-numba 0.34.0-3.

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
"""
Macro handling.

Macros are expanded on block-by-block
"""
from __future__ import absolute_import, print_function, division

# Expose the Macro object from the corresponding IR rewrite pass
from .rewrites.macros import Macro