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: cgitb.py support for frozen images
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.10, Python 3.9
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: barry-scott, iritkatriel
Priority: normal Keywords: patch

Created on 2005-04-06 22:45 by barry-scott, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
cgitb.patch barry-scott, 2005-04-06 22:45 cgitb.py patch
Messages (5)
msg48175 - (view) Author: Barry Alan Scott (barry-scott) * Date: 2005-04-06 22:45
cgitb.py does not report the line numbers in the stack
trace
if the python program is frozen. This is because the source
code is not available.

The attached patch fixes this problem.
msg109744 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-07-09 14:25
This is a small patch which could be useful, could someone please test it against a frozen program?
msg381044 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-11-15 23:18
Barry, are you interested in converting this patch into a github PR?
msg381132 - (view) Author: Barry Alan Scott (barry-scott) * Date: 2020-11-16 17:39
Ok. I'll add this to my todo list.
msg415060 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2022-03-13 17:37
cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements to them.
History
Date User Action Args
2022-04-11 14:56:10adminsetgithub: 41817
2022-03-13 17:37:37iritkatrielsetstatus: open -> closed
resolution: wont fix
messages: + msg415060

stage: patch review -> resolved
2020-11-16 17:41:14iritkatrielsetversions: + Python 3.9, Python 3.10, - Python 3.2
2020-11-16 17:39:21barry-scottsetstatus: pending -> open

messages: + msg381132
2020-11-15 23:18:41iritkatrielsetstatus: open -> pending
2020-11-15 23:18:33iritkatrielsetnosy: + iritkatriel
messages: + msg381044
2014-02-03 19:48:27BreamoreBoysetnosy: - BreamoreBoy
2010-08-21 13:03:53BreamoreBoysetstage: test needed -> patch review
versions: + Python 3.2, - Python 2.7
2010-07-09 14:25:48BreamoreBoysetnosy: + BreamoreBoy
messages: + msg109744
2009-02-15 22:15:56ajaksu2setstage: test needed
type: enhancement
components: + Library (Lib), - None
versions: + Python 2.7, - Python 2.3
2005-04-06 22:45:08barry-scottcreate