This file is indexed.

/usr/lib/python2.7/dist-packages/zope.proxy-4.1.4.egg-info/PKG-INFO is in python-zope.proxy 4.1.4-2.

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
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
Metadata-Version: 1.1
Name: zope.proxy
Version: 4.1.4
Summary: Generic Transparent Proxies
Home-page: http://pypi.python.org/pypi/zope.proxy
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: ===========================
        Generic Transparent Proxies
        ===========================
        
        Proxies are special objects which serve as mostly-transparent
        wrappers around another object, intervening in the apparent behavior of
        the wrapped object only when necessary to apply the policy (e.g., access
        checking, location brokering, etc.) for which the proxy is responsible.
        
        zope.proxy is implemented via a C extension module, which lets it do things
        like lie about its own ``__class__`` that are difficult in pure Python (and
        were completely impossible before metaclasses).  It also proxies all the
        internal slots (such as `__int__`/`__str__`/`__add__`).
        
        Editorial note:
        
           Unfortunately, we don't have separate documentation for `zope.proxy`
           at this time.  This is a shame because they are generically useful.
           We are publishing this release without documentation mainly because
           it is a dependency of other releases.
        
        
        =======
        CHANGES
        =======
        
        4.1.4 (2014-03-19)
        ------------------
        
        - Added support for Python 3.4.
        
        - Updated ``bootstrap.py`` to version 2.2.
        
        4.1.3 (2013-03-12)
        ------------------
        
        - Fixed interface object introspection in PyPy. For some reason PyPy made
          attributes available despite the restrictive ``__slots__`` declaration.
        
        - Added a bunch of tests surrounding interface lookup and adaptation.
        
        4.1.2 (2013-03-11)
        ------------------
        
        - Fixed ``PyProxyBase.__iter__()`` to return the result of
          ``PyProxyBase._wrapped.__iter__`` if available, otherwise fall back to
          Python internals. The previous implementation always created a generator.
        
        - Fixed ``PyProxyBase.__setattr__()`` to allow setting of properties on the
          proxy itself. This is needed to properly allow proxy extensions as was
          evidenced int he ``zope.security.decorator`` module.
        
        4.1.1 (2012-12-31)
        ------------------
        
        - Fleshed out PyPI Trove classifiers.
        
        4.1.0 (2012-12-19)
        ------------------
        
        - Enabled compilation of dependent modules under Py3k.
        
        - Replaced use of ``PyCObject`` APIs with equivalent ``PyCapsule`` APIs,
          except under Python 2.6.
        
          N.B.  This change is an ABI incompatibility under Python 2.7:
                extensions built under Python 2.7 against 4.0.x versions of
                ``zope.proxy`` must be rebuilt.
        
        4.0.1 (2012-11-21)
        ------------------
        
        - Added support for Python 3.3.
        
        4.0.0 (2012-06-06)
        ------------------
        
        - Added support for PyPy.
        
          N.B.:  the C extension is *not* built under PyPy.
        
        - Added a pure-Python reference / fallback implementations of
          ``zope.proxy.ProxyBase`` and the proxy module API functions.
        
          N.B.:  the pure-Python proxy implements all regular features of
          ``ProxyBase``;  however, it does not exclude access to the wrapped object
          in the same way that the C version does.  If you need that information
          hiding (e.g., to implement security sandboxing), you still need to use
          the C version.
        
        - Added support for continuous integration using ``tox`` and ``jenkins``.
        
        - 100% unit test coverage.
        
        - Added Sphinx documentation:  moved doctest examples to API reference.
        
        - Added 'setup.py docs' alias (installs ``Sphinx`` and dependencies).
        
        - Added 'setup.py dev' alias (runs ``setup.py develop`` plus installs
          ``nose`` and ``coverage``).
        
        - Replaced deprecated ``zope.interface.implements`` usage with equivalent
          ``zope.interface.implementer`` decorator.
        
        - Dropped support for Python 2.4 and 2.5.
        
        - Added Python 3.2 support.
        
        3.6.1 (2010-07-06)
        ------------------
        
        - Make tests compatible with Python 2.7.
        
        3.6.0 (2010-04-30)
        ------------------
        
        - Removed test extra and the remaining dependency on zope.testing.
        
        - Removed use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
        
        3.5.0 (2009/01/31)
        ------------------
        
        - Added support to bootstrap on Jython.
        
        - Use zope.container instead of zope.app.container.
        
        3.4.2 (2008/07/27)
        ------------------
        
        - Made C code compatible with Python 2.5 on 64bit architectures.
        
        3.4.1 (2008/06/24)
        ------------------
        
        - Bug: Updated `setup.py` script to conform to common layout. Also updated
          some of the fields.
        
        - Bug: The behavior of tuples and lists in the `__getslice__()` and
          `__setslice__()` method were incorrect by not honoring the pre-cooked
          indices. See http://docs.python.org/ref/sequence-methods.html.
        
        3.4.0 (2007/07/12)
        ------------------
        
        - Feature: Added a decorator module that supports declaring interfaces on
          proxies that get blended with the interfaces of the things they proxy.
        
        3.3.0 (2006/12/20)
        ------------------
        
        - Corresponds to the verison of the `zope.proxy` package shipped as part of
          the Zope 3.3.0 release.
        
        
        3.2.0 (2006/01/05)
        ------------------
        
        - Corresponds to the verison of the zope.proxy package shipped as part of
          the Zope 3.2.0 release.
        
        
        3.0.0 (2004/11/07)
        ------------------
        
        - Corresponds to the verison of the zope.proxy package shipped as part of
          the Zope X3.0.0 release.
        
Keywords: proxy generic transparent
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Framework :: Zope3
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent