How to remove specified cookie (via a given name) in cookie jar? I have the following code, but how can I remove a specified cookie in the cookie jar? cj = cookielib.LWPCookieJar()
if cj is not None:
if os.path.isfile(COOKIEFILE):
print 'Loading Cookie--------------'
cj.load(COOKIEFILE)
--
http://mail.python.org/mailman/listinfo/python-list
