This file is indexed.

/usr/lib/python2.7/dist-packages/tables/nodes/__init__.py is in python-tables 3.1.1-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
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-

########################################################################
#
# License: BSD
# Created: October 19, 2004
# Author:  Ivan Vilata i Balaguer - reverse:net.selidor@ivan
#
# $Id$
#
########################################################################

"""Special node behaviours for PyTables.

This package contains several modules that give specific behaviours
to PyTables nodes.  For instance, the filenode module provides
a file interface to a PyTables node.


Package modules:
  filenode -- A file interface to nodes for PyTables databases.

"""

# The list of names to be exported to the importing module.
__all__ = ['filenode']


## Local Variables:
## mode: python
## py-indent-offset: 4
## tab-width: 4
## End: