"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
[...]
> Are the docs themselves in subversion? I suppose I should also update
> the doc at http://docs.python.org/lib/module-urllib2.html
Yep:
http://svn.python.org/projects/python/trunk/Doc/lib/liburllib2.tex
John
--
http://mail.python.org/mail
On Jul 10, 11:10 pm, [EMAIL PROTECTED] (John J. Lee) wrote:
> "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> > urllib2.build_opener happily accepts and ignores a FileCookieJar.I
> > had a bug in my code which looked like
>
> > urllib2.build_opener(func_returning_cookie_jar())
>
> > which sho
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> urllib2.build_opener happily accepts and ignores a FileCookieJar.I
> had a bug in my code which looked like
>
> urllib2.build_opener(func_returning_cookie_jar())
>
> which should have been
>
> urllib2.build_opener(HTTPCookieProcessor(func_retur
urllib2.build_opener happily accepts and ignores a FileCookieJar.I
had a bug in my code which looked like
urllib2.build_opener(func_returning_cookie_jar())
which should have been
urllib2.build_opener(HTTPCookieProcessor(func_returning_cookie_jar())
The problem is that the code ran happily w