Bugs item #788479, was opened at 2003-08-13 22:27
Message generated for change (Comment added) made by gtalvola
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=788479&group_id=4866

Category: WebKit
Group: None
>Status: Closed
Resolution: None
Priority: 5
Submitted By: Michael Casaday (mcasaday)
Assigned to: Nobody/Anonymous (nobody)
Summary: Incorrect call to self.delValue() in Session.__delitem__()

Initial Comment:
Session.__delitem__() improperly calls Session.delValue() 
with self as the first explicit argument:

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

This causes exceptions like this to be thrown:

  File "WebKit\Session.py", line 145, in __delitem__
    self.delValue(self, name)
TypeError: delValue() takes exactly 2 arguments (3 
given)

The fix is obvious:

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


----------------------------------------------------------------------

>Comment By: Geoff Talvola (gtalvola)
Date: 2003-08-14 12:33

Message:
Logged In: YES 
user_id=88162

This had already been fixed in Webware CVS since 0.8 was
released, but the 0.8.1 release didn't include the fix.

I moved the branch tag on Session.py so that the next
release, whether 0.8.2 or 0.9, will include the fix.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=788479&group_id=4866


-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to