Andrey Chichak added the comment:
1. Cookie.py.diff is fix for error, very rare error.
2. Cookie_multi.diff is extention for supporting same name cookies set for
diferent pathes.
Cookie.py contain error!
--
___
Python tracker
<h
Andrey Chichak added the comment:
This is fix for rare problem. If I set 2 cookies:
sid=pub.GHoBitAWLt, path="/"
sid=cab.S97jUfeihM, path="/cab"
All browsers in Cookie header send for any URL '/cab*':
sid=cab.S97jUfeihM; sid=pub.GHoBitAWLt
Current implementat
Andrey Chichak added the comment:
Remake for patch due the requirements of
http://www.python.org/dev/patches/
--
Added file: http://bugs.python.org/file15606/Cookie_multi.diff
___
Python tracker
<http://bugs.python.org/issue7
New submission from Andrey Chichak :
After setting cookies with same name and different path only nearest to
root cookie is available.
Attached patch:
1. Set Cookie to nearest value.
2. Collects all same name values in Cookie._multi[''] in
order.
--
components: Library (