[Zope-dev] [zopefoundation/zope.security] 82fd54: Changed strategy to hide wrapped to not use the se...

Stephan Richter stephan.richter at gmail.com
Tue Mar 12 12:30:51 UTC 2013


On Monday, March 11, 2013 10:33:30 PM Tres Seaver wrote:
> > Yep, saw that. There are some uncovered lines for which I have to add
> > tests left. Also, I just noticed while prorting zope.publisher to PyPy
> > that proxies cannot be adapted, which is a big issue for any view
> > libraries.
> 
> Ouch.  That "lying about my type" bit is hard to get over.

I was thinking about dynamically creating proxy classes. Something along the 
lines of:

class PyProxy(object):

    def __new__(cls, orig):
        ProxyForOrig = type('ProxyForOrig', (cls, orig.__class__))
        return ProxyForOrig(orig)

That should also help us with our 3-arg pow() call

What do you think?

Regards,
Stephan
-- 
Entrepreneur and Software Geek
Google me. "Zope Stephan Richter"


More information about the Zope-Dev mailing list