Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 299 Bytes

unpacking-in-except.md

File metadata and controls

11 lines (6 loc) · 299 Bytes

Pattern: Unpacking in except

Issue: -

Description

Python 3 does not allow implicit unpacking of exceptions in except clauses. This message can't be emitted when using Python >= 3.0.

Further Reading