[issue15749] cgitb prints html for text when display disabled.

2022-03-13 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

[issue15749] cgitb prints html for text when display disabled.

2019-03-14 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Rémi, I think @r.david.murray would need to review the PR, based on his last comment. That's why I was asking whether the patch should be converted to a PR. There seemed to be a conflict between this and issue 12890 and I wasn't certain which parts of

[issue15749] cgitb prints html for text when display disabled.

2019-03-13 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Hi Cheryl, I updated and converted the path. Could you please review the PR? -- nosy: +remi.lapeyre ___ Python tracker ___

[issue15749] cgitb prints html for text when display disabled.

2019-03-13 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- pull_requests: +12290 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15749] cgitb prints html for text when display disabled.

2019-03-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: I can still recreate this issue under 3.8. Should this patch be converted to a GitHub pull request? -- nosy: +cheryl.sabella versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___

[issue15749] cgitb prints html for text when display disabled.

2012-10-27 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7, Python 3.3, Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15749 ___

[issue15749] cgitb prints html for text when display disabled.

2012-10-27 Thread R. David Murray
R. David Murray added the comment: Issue 12890 fix is now committed. Perhaps I should have worked with yours instead...but I didn't. The test solution in that patch, calling python in a separate process, is conceptually simpler but will take more time to run. I'm on the fence as to which

[issue15749] cgitb prints html for text when display disabled.

2012-10-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e4574595674 by R David Murray in branch '3.3': #12890: skip tests which fail on windows until fixed or rewritten. http://hg.python.org/cpython/rev/0e4574595674 New changeset 57a33af85407 by R David Murray in branch 'default': merge #12890: skip

[issue15749] cgitb prints html for text when display disabled.

2012-08-25 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report and patch. Is this a duplicate of #12890? -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15749 ___

[issue15749] cgitb prints html for text when display disabled.

2012-08-25 Thread aliles
aliles added the comment: Not an exact duplicate, although I should have seen that issue. Oops. The 'display' and 'logdir' arguments are independent. Although I do appear to have gone a little overboard and fixed 12890 issue as well. Should I wait for that fix to be merged then reissue the

[issue15749] cgitb prints html for text when display disabled.

2012-08-20 Thread aliles
New submission from aliles: If cgitb has been enabled to format as text but suppress the display, the output is formated as html. (Prefixed with p) gitb.enable(display=0, format='txt') raise ValueError('Oops!') pA problem occurred in a Python script. The patch changes the prefix used