mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
9 lines
137 B
Python
9 lines
137 B
Python
try:
|
|
pass
|
|
except a, b: # new, relaxed syntax
|
|
pass
|
|
except (c, d): # old syntax
|
|
pass
|
|
except (e, f) as g: # old syntax
|
|
pass
|