Message3612

Author yanne
Recipients yanne
Date 2008-09-23.10:55:03
SpamBayes Score 1.4034758e-07
Marked as misclassified No
Message-id <1222167304.18.0.519983062807.issue1136@psf.upfronthosting.co.za>
In-reply-to
Content
$ echo -en "print 'Hello'\n  " > test.py
$ /opt/jython2.5a3/jython test.py
Traceback (most recent call last):
  (no code object) at line 0
  File "test.py", line 2

         ^
SyntaxError: line 2:2 mismatched input '' expecting EOF (test.py, line 2)

$ echo -en "def hello():\n    print 'Hello'\n " > test.py
$ /opt/jython2.5a3/jython test.py
Traceback (most recent call last):
  (no code object) at line 0
  File "test.py", line 3

        ^
IndentationError: unindent does not match any outer indentation level
(test.py, line 3)

$ echo -en "class Foo:\n  def hello(self):\n    print 'Hello'\n  " > test.py
$ /opt/jython2.5a3/jython test.py
Traceback (most recent call last):
  (no code object) at line 0
  File "test.py", line 4

         ^
SyntaxError: line 4:2 mismatched input '' expecting DEDENT (test.py, line 4)
History
Date User Action Args
2008-09-23 10:55:04yannesetrecipients: + yanne
2008-09-23 10:55:04yannesetmessageid: <1222167304.18.0.519983062807.issue1136@psf.upfronthosting.co.za>
2008-09-23 10:55:04yannelinkissue1136 messages
2008-09-23 10:55:03yannecreate