At 02:43 PM 7/1/00 -0300, Marcelo Pereira Nunes wrote:
>Hello, there!
>
>Today I was testing WebKit for the first time and unfortantly I found a
>bug right at the first request.
>
>In line 625 of the file WebUtils/Cookie.py we have
>
> if K[0] == "$":
>
>When the interpreter avaliated that lines it returned a "index out of
>range" error. Probably because K had become any null object. To solve
>this problem I just edited that like like this:
>
> if K and (K[0] == "$"):
>
>...and the system worked pretty well!
It's very important to us to know what steps were able to create the bug.
Can you tell us that?
>I didn't took some time yet to hack more carefully the system but I liked
>it a lot and I'm seriously thinking about using Webware in my
>professional activities in a near future. I'll post further hacks to this
>list.
Thanks. And welcome to the group. By the way, are you using version 0.3 or
did you sync against the CVS repository?
-Chuck
|