I haven't seen traffic on this list, so I'm hoping this is still an
appropriate place to post this type of report.
We're unable to use mod_python in production without this patch. It's
pretty self-explanatory:
--- Cookie.py 2007/12/15 21:45:42 1.1
+++ Cookie.py 2007/12/15 21:46:06
@@ -344,7 +344,7 @@
# We just ditch the cookies names which start with a dollar
sign since
# those are in fact RFC2965 cookies attributes. See bug
[#MODPYTHON-3].
- if key[0]!='$' and names is None or key in names:
+ if key[0]!='$' and ( names is None or key in names ):
result[key] = Class(key, val)
return result
Thanks,
--
Ken.
[EMAIL PROTECTED]
--- Cookie.py 2007/12/15 21:45:42 1.1
+++ Cookie.py 2007/12/15 21:46:06
@@ -344,7 +344,7 @@
# We just ditch the cookies names which start with a dollar sign since
# those are in fact RFC2965 cookies attributes. See bug [#MODPYTHON-3].
- if key[0]!='$' and names is None or key in names:
+ if key[0]!='$' and ( names is None or key in names ):
result[key] = Class(key, val)
return result