summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-08-09 17:35:48 (GMT)
committerGitHub <noreply@github.com>2020-08-09 17:35:48 (GMT)
commit462b095d7206fe02c9b6c72cd7aefae1ce637f2d (patch)
tree317a528fb41ec80129693c68d9e85968eede6ba4
parent103ce3debf07a48e79319acd0890be0c53e64fff (diff)
downloadcpython-462b095d7206fe02c9b6c72cd7aefae1ce637f2d.zip
cpython-462b095d7206fe02c9b6c72cd7aefae1ce637f2d.tar.gz
cpython-462b095d7206fe02c9b6c72cd7aefae1ce637f2d.tar.bz2
Improve renamed test_run.RecursionLimitTest (GH-21794)
PEP 8 style and new comments. (cherry picked from commit 8b67bf907c51846853127176cbb2982d102a2c2d) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r--Lib/idlelib/idle_test/test_run.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/idlelib/idle_test/test_run.py b/Lib/idlelib/idle_test/test_run.py
index 9995dbe..e2bdf1c 100644
--- a/Lib/idlelib/idle_test/test_run.py
+++ b/Lib/idlelib/idle_test/test_run.py
@@ -282,7 +282,8 @@ class StdOutputFilesTest(unittest.TestCase):
self.assertRaises(TypeError, f.close, 1)
-class TestSysRecursionLimitWrappers(unittest.TestCase):
+class RecursionLimitTest(unittest.TestCase):
+ # Test (un)install_recursionlimit_wrappers and fixdoc.
def test_bad_setrecursionlimit_calls(self):
run.install_recursionlimit_wrappers()
@@ -296,12 +297,12 @@ class TestSysRecursionLimitWrappers(unittest.TestCase):
run.install_recursionlimit_wrappers()
self.addCleanup(run.uninstall_recursionlimit_wrappers)
- # check that setting the recursion limit works
+ # Check that setting the recursion limit works.
orig_reclimit = sys.getrecursionlimit()
self.addCleanup(sys.setrecursionlimit, orig_reclimit)
sys.setrecursionlimit(orig_reclimit + 3)
- # check that the new limit is returned by sys.getrecursionlimit()
+ # Check that the new limit is returned by sys.getrecursionlimit().
new_reclimit = sys.getrecursionlimit()
self.assertEqual(new_reclimit, orig_reclimit + 3)
@@ -313,6 +314,7 @@ class TestSysRecursionLimitWrappers(unittest.TestCase):
self.assertEqual(new_reclimit, orig_reclimit)
def test_fixdoc(self):
+ # Put here until better place for miscellaneous test.
def func(): "docstring"
run.fixdoc(func, "more")
self.assertEqual(func.__doc__, "docstring\n\nmore")