[issue27165] Skip callables when displaying exception fields in cgitb

2022-03-23 Thread Irit Katriel
Irit Katriel added the comment: cgi/cgitb are deprecated as per PEP 594, so there won't be further enhancements to them. -- nosy: +iritkatriel resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue27165] Skip callables when displaying exception fields in cgitb

2018-10-04 Thread Adam Bielański
Change by Adam Bielański : -- pull_requests: +9085 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27165] Skip callables when displaying exception fields in cgitb

2018-10-04 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27165] Skip callables when displaying exception fields in cgitb

2018-10-04 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +9082 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27165] Skip callables when displaying exception fields in cgitb

2018-10-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Adam, Are you interested in converting your patch to a GitHub pull request? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.5, Python 3.6 ___ Python tracker

[issue27165] Skip callables when displaying exception fields in cgitb

2016-06-16 Thread Senthil Kumaran
Senthil Kumaran added the comment: Hi Adam, Thanks for the patch. I reviewed it. It's a good change. As you mentioned in the comments, making both HTML and Text formatter behave consistently and skip, underscores, callables, _callables will be a good idea. Please include change. Also, if

[issue27165] Skip callables when displaying exception fields in cgitb

2016-06-02 Thread Adam Bielański
Changes by Adam Bielański : Removed file: http://bugs.python.org/file43065/cgitb.diff ___ Python tracker ___

[issue27165] Skip callables when displaying exception fields in cgitb

2016-06-02 Thread Adam Bielański
Changes by Adam Bielański : Added file: http://bugs.python.org/file43097/cgitb.patch ___ Python tracker ___

[issue27165] Skip callables when displaying exception fields in cgitb

2016-05-31 Thread Adam Bielański
New submission from Adam Bielański: Issue: cgitb text formatter outputs all members of exception object, using standard dir() to get their names. My patch changes its behaviour to skip fields which are callable, since printing them only clutters the output but is rarely helpful. HTML