[Zope3-checkins] SVN: Zope3/trunk/src/zope/security/proxy.py Remove
BBB stuff that claimed it was going to be removed in Zope 3.1.
Philipp von Weitershausen
philikon at philikon.de
Tue Oct 11 13:20:58 EDT 2005
Log message for revision 39055:
Remove BBB stuff that claimed it was going to be removed in Zope 3.1.
Apparently it wasn't, so let's at least remove it for Zope 3.2.
Changed:
U Zope3/trunk/src/zope/security/proxy.py
-=-
Modified: Zope3/trunk/src/zope/security/proxy.py
===================================================================
--- Zope3/trunk/src/zope/security/proxy.py 2005-10-11 17:17:55 UTC (rev 39054)
+++ Zope3/trunk/src/zope/security/proxy.py 2005-10-11 17:20:57 UTC (rev 39055)
@@ -26,24 +26,6 @@
# This import represents part of the API for this module
from zope.security.checker import ProxyFactory
-def trustedRemoveSecurityProxy(object):
- """Deprecated, use removeSecurityProxy instead"""
- warn("trustedRemoveSecurityProxy is deprecated."
- " It will disappear in Zope X3.1. "
- " Use removeSecurityProxy instead",
- DeprecationWarning, 2)
-
- return removeSecurityProxy(object)
-
-def getProxiedObject(object):
- """Deprecated, use removeSecurityProxy instead"""
- warn("getProxiedObject is deprecated."
- " It will disappear in Zope X3.1. "
- " Use removeSecurityProxy instead",
- DeprecationWarning, 2)
-
- return removeSecurityProxy(object)
-
def getTestProxyItems(proxy):
"""Try to get checker names and permissions for testing
More information about the Zope3-Checkins
mailing list