Lines Matching full:limit
2 """Find the maximum recursion limit that prevents interpreter termination.
4 This script finds the maximum safe recursion limit on a particular
5 platform. If you need to change the recursion limit on your system,
6 this script will tell you a safe upper bound. To use the new limit,
15 "Limit of NNNN is fine".
18 safe limit for your system (which depends on the OS, architecture, but also
29 NB: A program that does not use __methods__ can set a higher limit.
117 limit = 1000 variable
119 check_limit(limit, "test_recurse")
120 check_limit(limit, "test_add")
121 check_limit(limit, "test_repr")
122 check_limit(limit, "test_init")
123 check_limit(limit, "test_getattr")
124 check_limit(limit, "test_getitem")
125 check_limit(limit, "test_cpickle")
126 check_limit(limit, "test_compiler_recursion")
127 print("Limit of %d is fine" % limit)
128 limit = limit + 100 variable