This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Don't print to stdout in cookielib.py exception handler
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: loewis Nosy List: akuchling, jjlee, loewis
Priority: high Keywords: patch

Created on 2004-06-09 21:09 by jjlee, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
cookielib.py.patch jjlee, 2004-06-09 21:09
Messages (2)
msg46158 - (view) Author: John J Lee (jjlee) Date: 2004-06-09 21:09
There are a couple of blanket except: statements in
cookielib.  The idea is to handle any bugs in
cookielib's input handling that may be tickled by
unexpected input by issuing a warning instead of
letting the exception propagate.

Previously, in addition to issuing a warning, a
traceback was printed.  This patch makes the traceback
part of the warning, so it can be suppressed.
msg46159 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2004-07-10 18:32
Logged In: YES 
user_id=11375

Applied to CVS; thanks!
History
Date User Action Args
2022-04-11 14:56:04adminsetgithub: 40372
2004-06-09 21:09:32jjleecreate