<[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> I can get through about 1750 pages of 5000 before I get a WindowsError:
> stack overflow exception. Any ideas how I can keep the program chugging
> along?

A typical source of stack overflow is recursion.  Without seeing the code 
or actual stacktrace, I would guess that you are somehow using recursion 
instead of iteration.  Or perhaps you are analyzing big, deeply nested 
pages.

Terry J. Reedy



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to