- 19 May, 2015 6 commits
-
-
Tres Seaver authored
-
Tres Seaver authored
-
Tres Seaver authored
-
git://github.com/NextThought/zope.proxyTres Seaver authored
Merge branch 'int-and-float' of git://github.com/NextThought/zope.proxy into NextThought-int-and-float
-
Tres Seaver authored
Handle descriptors defined in PyProxyBase subclasses like C
-
Jason Madden authored
Python 2.6 uses a "hack" to call __complex__ and so we lost coverage of that. 2.7 does it correctly. See https://github.com/zopefoundation/zope.proxy/pull/6#issuecomment-103618850
-
- 08 May, 2015 1 commit
-
-
Jason Madden authored
Make it easier to subclass PyProxyBase using multiple-inheritance. This will let zope.container._proxy reuse all the fixes in this branch.
-
- 07 May, 2015 5 commits
-
-
Jason Madden authored
-
Jason Madden authored
Make the C implementation proxy __unicode__, and make it use the standard methods to proxy int and float. Fixes #3 and Fixes #4.
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
Handle descriptors defined in PyProxyBase subclasses the same way the C version does. This fixes #5.
-
- 28 Jan, 2015 2 commits
-
-
Tres Seaver authored
-
Tres Seaver authored
-
- 22 Jan, 2015 2 commits
-
-
Tres Seaver authored
-
Tres Seaver authored
-
- 21 Jan, 2015 1 commit
-
-
Tres Seaver authored
-
- 19 Jan, 2015 2 commits
-
-
Tres Seaver authored
-
Tres Seaver authored
-
- 29 Dec, 2014 2 commits
-
-
Tres Seaver authored
[ci skip]
-
Tres Seaver authored
[ci skip]
-
- 20 Dec, 2014 1 commit
-
-
Tres Seaver authored
-
- 18 Dec, 2014 1 commit
-
- 06 Nov, 2014 1 commit
-
-
Marius Gedminas authored
Downloaded from http://downloads.buildout.org/2/bootstrap.py
-
- 19 Mar, 2014 4 commits
-
-
Tres Seaver authored
-
Tres Seaver authored
-
Tres Seaver authored
-
Tres Seaver authored
-
- 17 Mar, 2014 1 commit
-
-
Tres Seaver authored
-
- 19 Dec, 2013 1 commit
-
-
Marius Gedminas authored
Try to preemptively answer hypothetical questions like Why can't I just ``` class Proxy(object): def __init__(self, obj): self.__obj = obj def __getattr__(self, a): return getattr(self.__obj, a) def __setattr__(self, a, v): setattr(self.__obj, a, v) ```
-
- 10 Jul, 2013 1 commit
-
-
Tres Seaver authored
-
- 13 Mar, 2013 1 commit
-
-
Tres Seaver authored
Test this case under both Python 2.7 and 3.3.
-
- 12 Mar, 2013 1 commit
-
-
Marius Gedminas authored
-
- 11 Mar, 2013 3 commits
-
-
Stephan Richter authored
-
Stephan Richter authored
-
Stephan Richter authored
``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.
-
- 04 Mar, 2013 1 commit
-
-
Stephan Richter authored
-
- 11 Jan, 2013 1 commit
-
-
Tres Seaver authored
- Denominate files to indicate ReST. - Drop .bzrignore. - Add MANIFEST.in FBO users w/o setuptools_git.
-
- 08 Jan, 2013 1 commit
-
-
Tres Seaver authored
-
- 31 Dec, 2012 1 commit
-
-
Tres Seaver authored
-