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: apply fails to check if warning raises exception
Type: Stage:
Components: Interpreter Core Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: glchapman, gvanrossum, nnorwitz
Priority: normal Keywords:

Created on 2003-02-21 02:08 by glchapman, last changed 2022-04-10 16:07 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bltinmodule.c.diff glchapman, 2003-02-21 02:10
Messages (3)
msg14758 - (view) Author: Greg Chapman (glchapman) Date: 2003-02-21 02:08
The apply builtin function now generates a 
PendingDeprecationWarning.  However, it fails to check 
if the warning has raised an exception.  Attached is a 
small patch which adds the check to apply.
msg14759 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2003-02-23 14:13
Logged In: YES 
user_id=6380

I think Neal can fix this.
msg14760 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2003-02-23 21:54
Logged In: YES 
user_id=33168

Checked in as:
 * Python/bltinmodule.c 2.282
History
Date User Action Args
2022-04-10 16:07:00adminsetgithub: 38025
2003-02-21 02:08:27glchapmancreate