summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/support/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index eec5498..318a059 100644
--- a/Lib/test/support/__init__.py
+++ b/Lib/test/support/__init__.py
@@ -2380,7 +2380,8 @@ def _get_c_recursion_limit():
import _testcapi
return _testcapi.Py_C_RECURSION_LIMIT
except (ImportError, AttributeError):
- return 1500 # (from Include/cpython/pystate.h)
+ # Originally taken from Include/cpython/pystate.h .
+ return 1500
# The default C recursion limit.
Py_C_RECURSION_LIMIT = _get_c_recursion_limit()