[issue16942] urllib still doesn't support persistent connections

2013-04-20 Thread Senthil Kumaran
Senthil Kumaran added the comment: Agree with Demian Brecht. This issue is being closed in when two issues cover the requirements discussed here. * issue# 16901 - For Enhancing FileCookieJar * issue# 9740 - For supporting persistant HTTP 1.1 connections. (:-( on me) -- nosy: +orsenth

[issue16942] urllib still doesn't support persistent connections

2013-04-07 Thread Demian Brecht
Demian Brecht added the comment: Just noticed there was a typo in the link in my previous post. It should be directing to issue# 16901. -- ___ Python tracker ___ ___

[issue16942] urllib still doesn't support persistent connections

2013-02-26 Thread Demian Brecht
Demian Brecht added the comment: http://bugs.python.org/issue1690 seems to be a duplicate of this one (at least the initial report). 16901 (imho) is documented more clearly than this one, so can this one be closed as duplicate? -- ___ Python tracker

[issue16942] urllib still doesn't support persistent connections

2013-02-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: +class FileCookieJar(CookieJar, metaclass=ABCMeta): +"""Abstract Base Class for any file-based CookieJar.""" Is it just me or is it a bit strange to derive an abstract base class from a concrete class? Is CookieJar meant to be directly used? +with

[issue16942] urllib still doesn't support persistent connections

2013-02-23 Thread Demian Brecht
Demian Brecht added the comment: I've changed FileCookieJar to use the ABCMeta metaclass and updated the concrete implementations. If this patch looks sufficient, I'll make an update to the docs as well. -- keywords: +patch Added file: http://bugs.python.org/file29215/cookiejar_16942.p

[issue16942] urllib still doesn't support persistent connections

2013-02-23 Thread Demian Brecht
Changes by Demian Brecht : -- nosy: +dbrecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue16942] urllib still doesn't support persistent connections

2013-01-12 Thread R. David Murray
R. David Murray added the comment: Please open a separate issue for your enhancement request in your second message (assuming there isn't already one open). I'm not sure what your third message is about, but it also sounds off topic for your original bug report. For the FileCookieJar issue, I

[issue16942] urllib still doesn't support persistent connections

2013-01-12 Thread Ramchandra Apte
Changes by Ramchandra Apte : -- title: seriously? urllib still doesn't support persistent connections? -> urllib still doesn't support persistent connections ___ Python tracker