This file is indexed.

/usr/lib/python2.7/dist-packages/larch-1.20151025.egg-info is in python-larch 1.20151025-1.

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
Metadata-Version: 1.1
Name: larch
Version: 1.20151025
Summary: copy-on-write B-tree data structure
Home-page: http://liw.fi/larch/
Author: Lars Wirzenius
Author-email: liw@liw.fi
License: UNKNOWN
Description: An implementation of a particular kind of B-tree, based on research
        by Ohad Rodeh. This is the same data structure that btrfs uses, but
        in a new, pure-Python implementation.
        
        The distinctive feature of this B-tree is that a node is never (conceptually)
        modified. Instead, all updates are done by copy-on-write. This makes it
        easy to clone a tree, and modify only the clone, while other processes
        access the original tree.
        
        The implementation is generic and flexible, so that you may use it in
        a variety of situations. For example, the tree itself does not decide
        where its nodes are stored: you provide a class that does that for it.
        The library contains two implementations, one for in-memory and one
        for on-disk storage.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Software Development :: Libraries