[Zope3-checkins] CVS: Zope3/lib/python/Zope/Security - Checker.py:1.9
Steve Alexander
steve@cat-box.net
Thu, 31 Oct 2002 08:10:30 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Security
In directory cvs.zope.org:/tmp/cvs-serv5872/lib/python/Zope/Security
Modified Files:
Checker.py
Log Message:
Allowed tuples to be added with __add__
=== Zope3/lib/python/Zope/Security/Checker.py 1.8 => 1.9 ===
--- Zope3/lib/python/Zope/Security/Checker.py:1.8 Mon Oct 28 13:34:38 2002
+++ Zope3/lib/python/Zope/Security/Checker.py Thu Oct 31 08:10:30 2002
@@ -344,7 +344,7 @@
'__contains__', 'index', 'count']),
# YAGNI: () a rock
- tuple: NamesChecker(['__getitem__', '__getslice__',
+ tuple: NamesChecker(['__getitem__', '__getslice__', '__add__',
'__contains__', '__len__', '__iter__', '__iadd__']),
types.InstanceType: _instanceChecker,
Proxy: NoProxy,