This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ijmorlan
Recipients ijmorlan
Date 2008-03-10.20:29:38
SpamBayes Score 0.33314857
Marked as misclassified No
Message-id <1205180979.73.0.892316132999.issue2269@psf.upfronthosting.co.za>
In-reply-to
Content
$ cat bug_fine.py 
if True:
        max (a='a', 'b')
#elif True:
#       pass
else:
        pass
$ python bug_fine.py 
  File "bug_fine.py", line 2
    max (a='a', 'b')
SyntaxError: non-keyword arg after keyword arg
$ cat bug_show.py 
if True:
        max (a='a', 'b')
elif True:
        pass
else:
        pass
$ python bug_show.py 
Exception exceptions.SyntaxError: ('non-keyword arg after keyword arg',
2) in 'garbage collection' ignored
Fatal Python error: unexpected exception during garbage collection
Abort trap
$
History
Date User Action Args
2008-03-10 20:29:40ijmorlansetspambayes_score: 0.333149 -> 0.33314857
recipients: + ijmorlan
2008-03-10 20:29:39ijmorlansetspambayes_score: 0.333149 -> 0.333149
messageid: <1205180979.73.0.892316132999.issue2269@psf.upfronthosting.co.za>
2008-03-10 20:29:38ijmorlanlinkissue2269 messages
2008-03-10 20:29:38ijmorlancreate