mirror of
https://github.com/github/codeql.git
synced 2026-02-12 05:01:06 +01:00
433 B
433 B
category
| category |
|---|
| feature |
- The extractor now supports the new, relaxed syntax
except A, B, C: ...(which would previously have to be written asexcept (A, B, C): ...) as defined in PEP-758. This may cause changes in results for code that uses Python 2-style exception binding (except Foo, e: ...). The more modern format,except Foo as e: ...(available since Python 2.6) is unaffected.