Bugra Cakir wrote:
> I have found a "MemoryError" exception in my program. How can i output
> Python interpreter log or how can i find the root cause of this
> "MemoryError" exception ?
this means that you've run out of memory; the ordinary traceback
print-out should tell you where.
http://effbot.org/pyref/MemoryError.htm
</F>