From 545241aa652e1a85f6f492a656ffaea91d6d6f76 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 9 Dec 2025 17:09:40 +0000 Subject: [PATCH] Python: Add change note --- .../2025-12-09-python-support-relaxed-except-syntax.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md diff --git a/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md b/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md new file mode 100644 index 00000000000..f4091725cbc --- /dev/null +++ b/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md @@ -0,0 +1,4 @@ +--- +category: feature +--- +* The extractor now supports the new, relaxed syntax `except A, B, C: ...` (which would previously have to be written as `except (A, B, C): ...`) as defined in [PEP-758](https://peps.python.org/pep-0758/).