Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(52)

Unified Diff: Python/ceval.c

Issue 3276: Stack overflow checking dysfunctional with USE_STACKCHECK (Closed) SVN Base: http://svn.python.org/view/*checkout*/python/branches/py3k/
Patch Set: Created 1 year, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side by-side-diff with in-line comments
Download patch
« Include/ceval.h ('k') | no next file » | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Python/ceval.c
===================================================================
--- Python/ceval.c (revision 66050)
+++ Python/ceval.c (working copy)
@@ -471,6 +471,7 @@
return -1;
}
#endif
+ _Py_CheckRecursionLimit = recursion_limit;
if (tstate->recursion_critical)
/* Somebody asked that we don't check for recursion. */
return 0;
@@ -489,7 +490,6 @@
where);
return -1;
}
- _Py_CheckRecursionLimit = recursion_limit;
return 0;
}
« Include/ceval.h ('k') | no next file »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld r483