This file is indexed.

/usr/lib/python2.7/dist-packages/futures-3.2.0.egg-info/PKG-INFO is in python-concurrent.futures 3.2.0-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
Metadata-Version: 1.2
Name: futures
Version: 3.2.0
Summary: Backport of the concurrent.futures package from Python 3
Home-page: https://github.com/agronholm/pythonfutures
Author: Alex Grönholm
Author-email: alex.gronholm@nextday.fi
License: PSF
Description-Content-Type: UNKNOWN
Description: .. image:: https://travis-ci.org/agronholm/pythonfutures.svg?branch=master
          :target: https://travis-ci.org/agronholm/pythonfutures
          :alt: Build Status
        
        This is a backport of the `concurrent.futures`_ standard library module to Python 2.
        
        It should not be installed on Python 3, although there should be no harm in doing so, as the
        standard library takes precedence over third party libraries.
        
        To conditionally require this library only on Python 2, you can do this in your ``setup.py``:
        
        .. code-block:: python
        
            setup(
                ...
                extras_require={
                    ':python_version == "2.7"': ['futures']
                }
            )
        
        Or, using the newer syntax:
        
        .. code-block:: python
        
            setup(
                ...
                install_requires={
                    'futures; python_version == "2.7"'
                }
            )
        
        .. warning:: The ``ProcessPoolExecutor`` class has known (unfixable) problems on Python 2 and
          should not be relied on for mission critical work.
        
        .. _concurrent.futures: https://docs.python.org/library/concurrent.futures.html
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2 :: Only
Requires-Python: >=2.6, <3