[Zope3-checkins] CVS: Zope3/lib/python/Zope/Security - Checker.py:1.8
Steve Alexander
steve@cat-box.net
Mon, 28 Oct 2002 13:34:39 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Security
In directory cvs.zope.org:/tmp/cvs-serv9906/lib/python/Zope/Security
Modified Files:
Checker.py
Log Message:
allowed tuples to be __iadd__-ed
=== Zope3/lib/python/Zope/Security/Checker.py 1.7 => 1.8 ===
--- Zope3/lib/python/Zope/Security/Checker.py:1.7 Tue Oct 1 08:47:50 2002
+++ Zope3/lib/python/Zope/Security/Checker.py Mon Oct 28 13:34:38 2002
@@ -345,7 +345,7 @@
# YAGNI: () a rock
tuple: NamesChecker(['__getitem__', '__getslice__',
- '__contains__', '__len__', '__iter__']),
+ '__contains__', '__len__', '__iter__', '__iadd__']),
types.InstanceType: _instanceChecker,
Proxy: NoProxy,
types.ClassType: _classChecker,