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.
Created on 2008年03月22日 00:49 by loewis, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg64303 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2008年03月22日 00:49 | |
The code try: f() except X,a: g() except: h() currently doesn't get changed, but should be converted to try: f() except X as a: g() except: h() |
|||
| msg64611 - (view) | Author: Collin Winter (collinwinter) * (Python committer) | Date: 2008年03月28日 02:20 | |
Fixed in r61983. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:32 | admin | set | github: 46705 |
| 2008年03月28日 02:20:19 | collinwinter | set | status: open -> closed resolution: fixed messages: + msg64611 |
| 2008年03月22日 00:49:33 | loewis | create | |