Commit a1932756 authored by Jason Madden's avatar Jason Madden

zope.container._proxy relied on the implementation detail of PyNonOverridable.

parent fd0e8f72
......@@ -456,6 +456,11 @@ if 'PURE_PYTHON' not in os.environ:
except ImportError: #pragma NO COVER
pass
class PyNonOverridable(object):
"Deprecated, only for BWC."
def __init__(self, method_desc): #pragma NO COVER PyPy
self.desc = method_desc
if _c_available:
# Python API: not used in this module
from zope.proxy._zope_proxy_proxy import ProxyBase
......
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