diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-08-09 17:08:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-09 17:08:19 (GMT) |
commit | 8b67bf907c51846853127176cbb2982d102a2c2d (patch) | |
tree | 3a1521488eb0a3d484f62de8d71b49c94fea3fc5 /Lib/idlelib | |
parent | e28b8c93878072dc02b116108ef5443084290d47 (diff) | |
download | cpython-8b67bf907c51846853127176cbb2982d102a2c2d.zip cpython-8b67bf907c51846853127176cbb2982d102a2c2d.tar.gz cpython-8b67bf907c51846853127176cbb2982d102a2c2d.tar.bz2 |
Improve renamed test_run.RecursionLimitTest (GH-21794)
PEP 8 style and new comments.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/idle_test/test_run.py | 8 |
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") |