[issue29920] Document cgitb.text and cgitb.html

2022-04-02 Thread Irit Katriel
Irit Katriel added the comment: Closing as the backport to 3.5/3.6 is no longer relevant and also cgitb is deprecated under 594. -- nosy: +iritkatriel resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue29920] Document cgitb.text and cgitb.html

2017-06-01 Thread Berker Peksag
Berker Peksag added the comment: Please don't close it yet. I agree with Serhiy's comments in msg293394, but I couldn't find time to address his comments yet (plus we still need to backport the documentation update to 3.5 and 3.6 branches) -- ___

[issue29920] Document cgitb.text and cgitb.html

2017-06-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I suggest to move the descriptions of text() and html() after handle(). And I don't know what to do with the discrepancy in the parameter name. -- versions: -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker

[issue29920] Document cgitb.text and cgitb.html

2017-06-01 Thread Xavier Morel
Xavier Morel added the comment: Should I close this since the PR was merged? -- ___ Python tracker ___ ___

[issue29920] Document cgitb.text and cgitb.html

2017-05-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The main functions of the cgitb module are enable() and handler(). I would describe them first, and text() and html() at the end (maybe in separate subsection). Actually the main part of the descriptions of text() and html() can be shared and placed in a

[issue29920] Document cgitb.text and cgitb.html

2017-05-10 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1627 ___ Python tracker ___ ___

[issue29920] Document cgitb.text and cgitb.html

2017-05-10 Thread Berker Peksag
Changes by Berker Peksag : -- pull_requests: +1626 ___ Python tracker ___ ___

[issue29920] Document cgitb.text and cgitb.html

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset c07b3a15be5e0a68a73b4c532861ed8de6932bd2 by Berker Peksag (masklinn) in branch 'master': bpo-29920: Document cgitb.text() and cgitb.html() functions (GH-849) https://github.com/python/cpython/commit/c07b3a15be5e0a68a73b4c532861ed8de6932bd2

[issue29920] Document cgitb.text and cgitb.html

2017-03-27 Thread Xavier Morel
Changes by Xavier Morel : -- pull_requests: -747 ___ Python tracker ___ ___

[issue29920] Document cgitb.text and cgitb.html

2017-03-27 Thread Xavier Morel
Xavier Morel added the comment: PR targetted to master rather than 2.7 -- pull_requests: +748 ___ Python tracker ___

[issue29920] Document cgitb.text and cgitb.html

2017-03-27 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: +Python 3.5 ___ Python tracker ___ ___

[issue29920] Document cgitb.text and cgitb.html

2017-03-27 Thread Xavier Morel
New submission from Xavier Morel: Currently, cgitb documents the hook (enable) and somewhat unclearly the ability to dump the HTML traceback to stdout, but despite that being technically available it does not document the ability to dump the traceback to a string as either text or html.