452 Class defining the "Default except not being the last" message. |
452 Class defining the "Default except not being the last" message. |
453 |
453 |
454 Indicates an except block as not the last exception handler. |
454 Indicates an except block as not the last exception handler. |
455 """ |
455 """ |
456 message_id = 'F25' |
456 message_id = 'F25' |
457 message = 'default \'except:\' must be last' # __IGNORE_WARNING__ |
457 message = 'default \'except:\' must be last' # __IGNORE_WARNING_M121__ |
458 |
458 |
459 |
459 |
460 class TwoStarredExpressions(Message): |
460 class TwoStarredExpressions(Message): |
461 """ |
461 """ |
462 Class defining the "multiple starred expressions" message. |
462 Class defining the "multiple starred expressions" message. |