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:40 | ijmorlan | set | spambayes_score: 0.333149 -> 0.33314857 recipients: + ijmorlan |
| 2008年03月10日 20:29:39 | ijmorlan | set | spambayes_score: 0.333149 -> 0.333149 messageid: <1205180979.73.0.892316132999.issue2269@psf.upfronthosting.co.za> |
| 2008年03月10日 20:29:38 | ijmorlan | link | issue2269 messages |
| 2008年03月10日 20:29:38 | ijmorlan | create | |