This file is indexed.

/usr/lib/python2.7/dist-packages/waitress-1.0.1.egg-info/PKG-INFO is in python-waitress 1.0.1-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
86
87
88
89
90
91
92
93
Metadata-Version: 1.1
Name: waitress
Version: 1.0.1
Summary: Waitress WSGI server
Home-page: https://github.com/Pylons/waitress
Author: Pylons Project
Author-email: pylons-discuss@googlegroups.com
License: ZPL 2.1
Description: Waitress is meant to be a production-quality pure-Python WSGI server with very
        acceptable performance.  It has no dependencies except ones which live in the
        Python standard library.  It runs on CPython on Unix and Windows under Python
        2.7+ and Python 3.3+.  It is also known to run on PyPy 1.6.0+ on UNIX.  It
        supports HTTP/1.0 and HTTP/1.1.
        
        For more information, see the "docs" directory of the Waitress package or
        http://docs.pylonsproject.org/projects/waitress/en/latest/ .
        
        
        1.0.1 (2016-10-22)
        ------------------
        
        Bugfixes
        ~~~~~~~~
        
        - IPv6 support on Windows was broken due to missing constants in the socket
          module. This has been resolved by setting the constants on Windows if they
          are missing. See https://github.com/Pylons/waitress/issues/138
        
        - A ValueError was raised on Windows when passing a string for the port, on
          Windows in Python 2 using service names instead of port numbers doesn't work
          with `getaddrinfo`. This has been resolved by attempting to convert the port
          number to an integer, if that fails a ValueError will be raised. See
          https://github.com/Pylons/waitress/issues/139
        
        
        1.0.0 (2016-08-31)
        ------------------
        
        Bugfixes
        ~~~~~~~~
        
        - Removed `AI_ADDRCONFIG` from the call to `getaddrinfo`, this resolves an
          issue whereby `getaddrinfo` wouldn't return any addresses to `bind` to on
          hosts where there is no internet connection but localhost is requested to be
          bound to. See https://github.com/Pylons/waitress/issues/131 for more
          information.
        
        Deprecations
        ~~~~~~~~~~~~
        
        - Python 2.6 is no longer supported.
        
        Features
        ~~~~~~~~
        
        - IPv6 support
        
        - Waitress is now able to listen on multiple sockets, including IPv4 and IPv6.
          Instead of passing in a host/port combination you now provide waitress with a
          space delineated list, and it will create as many sockets as required.
        
          .. code-block:: python
        
        	from waitress import serve
        	serve(wsgiapp, listen='0.0.0.0:8080 [::]:9090 *:6543')
        
        Security
        ~~~~~~~~
        
        - Waitress will now drop HTTP headers that contain an underscore in the key
          when received from a client. This is to stop any possible underscore/dash
          conflation that may lead to security issues. See
          https://github.com/Pylons/waitress/pull/80 and
          https://www.djangoproject.com/weblog/2015/jan/13/security/
        
Keywords: waitress wsgi server http
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP