[Zope3-checkins]
SVN: Zope3/trunk/src/zope/app/security/_protections.py
Renamed _always_available to _avaialable_by_default
Stephan Richter
srichter at cosmos.phy.tufts.edu
Tue Jul 13 13:11:43 EDT 2004
Log message for revision 26485:
Renamed _always_available to _avaialable_by_default
Changed:
U Zope3/trunk/src/zope/app/security/_protections.py
-=-
Modified: Zope3/trunk/src/zope/app/security/_protections.py
===================================================================
--- Zope3/trunk/src/zope/app/security/_protections.py 2004-07-13 17:09:35 UTC (rev 26484)
+++ Zope3/trunk/src/zope/app/security/_protections.py 2004-07-13 17:11:43 UTC (rev 26485)
@@ -26,5 +26,5 @@
# add __parent__ and __name__ to always available names
import zope.security.checker
for name in ['__name__', '__parent__']:
- if name not in zope.security.checker._always_available:
- zope.security.checker._always_available.append(name)
+ if name not in zope.security.checker._available_by_default:
+ zope.security.checker._available_by_default.append(name)
More information about the Zope3-Checkins
mailing list