summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-08-09 17:35:59 (GMT)
committerGitHub <noreply@github.com>2020-08-09 17:35:59 (GMT)
commit692552388d0d89523416eac24f436dafa2bb4914 (patch)
treeefe2ebb18a17cddeb0923879a120fceab9fb1992 /Lib/idlelib
parent105cfb5b182da63e8481fcb009e92546d240c6b5 (diff)
downloadcpython-692552388d0d89523416eac24f436dafa2bb4914.zip
cpython-692552388d0d89523416eac24f436dafa2bb4914.tar.gz
cpython-692552388d0d89523416eac24f436dafa2bb4914.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>
Diffstat (limited to 'Lib/idlelib')
-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")