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.
107 limit = 1000 variable
109 check_limit(limit, "test_recurse")
110 check_limit(limit, "test_add")
111 check_limit(limit, "test_repr")
112 check_limit(limit, "test_init")
113 check_limit(limit, "test_getattr")
114 check_limit(limit, "test_getitem")
115 check_limit(limit, "test_cpickle")
116 print "Limit of %d is fine" % limit
117 limit = limit + 100 variable