Commit d3341887 authored by Tres Seaver's avatar Tres Seaver

Note the non-hiding nature of the pure-Python proxy.

Folks who need that hiding have to stick to CPython.
parent 0b49ba68
......@@ -7,8 +7,16 @@ CHANGES
- Added support for PyPy.
- Added a pure-Python fallback implementations of ``zope.proxy.ProxyBase``
and the proxy module API functions.
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``.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment