[issue2269] Problem reporting non-keyword arg after keyword arg syntax error

2008-03-10 Thread Facundo Batista
Facundo Batista <[EMAIL PROTECTED]> added the comment: Already fixed in the trunk. Thanks for the report! -- nosy: +facundobatista resolution: -> out of date status: open -> closed __ Tracker <[EMAIL PROTECTED]> ___

[issue2269] Problem reporting non-keyword arg after keyword arg syntax error

2008-03-10 Thread Isaac Morland
Isaac Morland <[EMAIL PROTECTED]> added the comment: I should add that the full version information is: Python 2.5 (r25:51908, Aug 15 2007, 11:38:03) [GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin Also, in my actual code (a much larger file, in a project using ll.xist and other librar

[issue2269] Problem reporting non-keyword arg after keyword arg syntax error

2008-03-10 Thread Isaac Morland
New submission from Isaac Morland <[EMAIL PROTECTED]>: $ 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