This file is indexed.

/usr/lib/python2.7/dist-packages/bz2file-0.98.egg-info is in python-bz2file 0.98-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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Metadata-Version: 1.1
Name: bz2file
Version: 0.98
Summary: Read and write bzip2-compressed files.
Home-page: https://github.com/nvawda/bz2file
Author: Nadeem Vawda
Author-email: nadeem.vawda@gmail.com
License: Apache License, Version 2.0
Description: Bz2file is a Python library for reading and writing bzip2-compressed files.
        
        It contains a drop-in replacement for the file interface in the standard
        library's ``bz2`` module, including features from the latest development
        version of CPython that are not available in older releases.
        
        Bz2file is compatible with CPython 2.6, 2.7, and 3.0 through 3.4, as well as
        PyPy 2.0.
        
        
        Features
        --------
        
        - Supports multi-stream files.
        
        - Can read from or write to any file-like object.
        
        - Can open files in either text or binary mode.
        
        - Added methods: ``peek()``, ``read1()``, ``readinto()``, ``fileno()``,
          ``readable()``, ``writable()``, ``seekable()``.
        
        
        Installation
        ------------
        
        To install bz2file, run: ::
        
           $ pip install bz2file
        
        
        Documentation
        -------------
        
        The ``open()`` function and ``BZ2File`` class in this module provide the same
        features and interface as the ones in the standard library's ``bz2`` module in
        the current development version of CPython, `documented here
        <http://docs.python.org/dev/library/bz2.html>`_.
        
        
        Version History
        ---------------
        
        0.98: 19 January 2014
        
        - Added support for the 'x' family of modes.
        - Ignore non-bz2 data at the end of a file, rather than raising an exception.
        - Tests now pass on PyPy.
        
        0.95: 08 October 2012
        
        - Added the ``open()`` function.
        - Improved performance when reading in small chunks.
        - Removed the ``fileobj`` argument to ``BZ2File()``. To wrap an existing file
          object, pass it as the first argument (``filename``).
        
        0.9: 04 February 2012
        
        - Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Archiving :: Compression