[Zope-Checkins] CVS: Zope/lib/python/App - Management.py:1.52

Matthew T. Kromer matt@zope.com
Sat, 27 Oct 2001 09:02:45 -0400


Update of /cvs-repository/Zope/lib/python/App
In directory cvs.zope.org:/tmp/cvs-serv4822

Modified Files:
	Management.py 
Log Message:
Change a case where security management is called with keyword args with
unspecified defaults for other positions (curiously, which should
fail with Python -- evidently I dont fully grok something [MTK]);
should enable C acclerated access control to work again.


=== Zope/lib/python/App/Management.py 1.51 => 1.52 ===
 
             try:
-                if validate(container=self, value=o):
+                if validate(None, self, None, o, None):
                     result.append(d)
             except:
                 if not hasattr(o, '__roles__'):