Georg Brandl added the comment:
LGTM, except for:
diff -r 907d71668d3c Python/pythonrun.c
--- a/Python/pythonrun.c Sun Dec 16 21:10:35 2012 +0100
+++ b/Python/pythonrun.c Tue Dec 18 19:35:27 2012 +0200
@@ -2518,7 +2518,7 @@
PyOS_CheckStack(void)
{
__try {
- /* alloca throws a stack overflow exception if there's
+ /* alloca raises a stack overflow exception if there's
not enough space left on the stack */
alloca(PYOS_STACK_MARGIN * sizeof(void*));
return 0;
This is talking about a C++ exception and therefore "throw" is correct.
----------
nosy: +georg.brandl
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue16714>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com