This file is indexed.

/usr/lib/python2.7/dist-packages/PyTrie-0.2.egg-info is in python-trie 0.2+ds-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
Metadata-Version: 1.1
Name: PyTrie
Version: 0.2
Summary: A pure Python implementation of the trie data structure.
Home-page: http://bitbucket.org/gsakkis/pytrie/
Author: George Sakkis
Author-email: george.sakkis@gmail.com
License: UNKNOWN
Description: A *trie* is an ordered tree data structure that is used to store a mapping
        where the keys are sequences, usually strings over an alphabet. In addition to
        implementing the mapping interface, tries allow finding the items for a given
        prefix, and vice versa, finding the items whose keys are prefixes of a given key.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules