[Python-bugs-list] [Bug #133096] Fatal python error in com_make_closure()

noreply@sourceforge.net noreply@sourceforge.net
Mon, 19 Feb 2001 09:03:36 -0800


Bug #133096, was updated on 2001-Feb-19 09:03
Here is a current snapshot of the bug.

Project: Python
Category: Python Interpreter Core
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: glchapman
Assigned to : nobody
Summary: Fatal python error in com_make_closure()

Details: This construct causes python (2.1 alpha 2) to crash:

>>> def test(n):
...     return lambda fact: fact(fact, long(n))
...
lookup 'n' in test 1 -1
Fatal Python error: com_make_closure()

To try to help narrow it down, the following works with no problem:

>>> def test(n):
...     return lambda fact: fact(fact, n)

So it appears that adding the call to the long function is breaking
something.


For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=133096&group_id=5470