At 08:04 PM 8/12/2001 -0400, Jay Love wrote:
>Done.
>
>I also added dictionary style access to Session.  Also, 
>Application.isSessionIdProblematic wasn't checking the session objects 
>timeout and was using the default configuration setting.  I fixed that.
>
>Jay

Is there any reason to do this:

         def __getitem__(self, name):
                 return self.value(name)

         def __setitem__(self, name, value):
                 self.setValue(name, value)

         def __delitem__(self, name):
                 self.delValue(self, name)


rather than this:

         __getitem__ = value
         __setitem__ = setValue
         __delitem__ = delValue


The second is faster and smaller.


-Chuck


_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to