summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cgitb.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-40275: Use new test.support helper submodules in tests (GH-21315)Hai Shi2020-07-061-1/+1
|
* bpo-41069: Make TESTFN and the CWD for tests containing non-ascii ↵Serhiy Storchaka2020-06-251-4/+6
| | | | characters. (GH-21035)
* Remove binding of captured exceptions when not used to reduce the chances of ↵Pablo Galindo2019-11-191-1/+1
| | | | | | | creating cycles (GH-17246) Capturing exceptions into names can lead to reference cycles though the __traceback__ attribute of the exceptions in some obscure cases that have been reported previously and fixed individually. As these variables are not used anyway, we can remove the binding to reduce the chances of creating reference cycles. See for example GH-13135
* bpo-33256: Replace angle brackets around python object repr to display it in ↵sblondon2018-04-291-0/+1
| | | | html (GH-6442)
* Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+2
| | | | Patch by Christie Wilson.
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-5/+1
| | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
* #12890: fix test on windowsR David Murray2012-10-311-6/+4
| | | | Patch by Stephen Tonkin.
* #12890: skip tests which fail on windows until fixed or rewritten.R David Murray2012-10-271-2/+2
| | | | We may rewrite these using mock per issue 15749.
* merge #12890: don't emit <p> tags in text mode when logdir specified.R David Murray2012-10-271-8/+25
| | | | Patch by Jeff McNeil.
* Normalize whitespace for #11512 fix.Brian Curtin2011-07-061-7/+7
|
* Fix #11512. Add an initial test suite for the cgitb, providing 75% coverage.Brian Curtin2011-07-061-0/+55
Patch by Robbie Clemons (robquad), produced at the PyCon 2011 sprints.