Issue229364

classification
Title: Internal exception thrown for illegal listcomp code
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: bckfnn Nosy List: bckfnn
Priority: low Keywords:

Created on 2001-01-19.09:52:21 by bckfnn, last changed 2001-02-04.14:57:07 by bckfnn.

Messages
msg263 (view) Author: Finn Bock (bckfnn) Date: 2001-01-19.09:52:21
[i for i in range(10)] = (1, 2, 3)

Jython 2.0 on java1.3.0 (JIT: null)
Type "copyright", "credits" or "license" for more information.
>>> [i for i in range(10)] = (1, 2, 3)
Traceback (innermost last):
  (no code object) at line 0
java.lang.InternalError: stack < 0: -1
        at org.python.compiler.Code.push(Code.java:155)
        at org.python.compiler.Code.pop(Code.java:456)
msg264 (view) Author: Finn Bock (bckfnn) Date: 2001-02-04.14:57:07
Fixed in LocalsCompiler.java: 2.7;
History
Date User Action Args
2001-01-19 09:52:21bckfnncreate