From 91afcc9ebb8d7a826dafdc1f44f934299a1977c4 Mon Sep 17 00:00:00 2001 From: Juha Jeronen Date: Fri, 27 Sep 2024 16:41:44 +0300 Subject: [PATCH] update docstring, again --- unpythonic/syntax/scopeanalyzer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unpythonic/syntax/scopeanalyzer.py b/unpythonic/syntax/scopeanalyzer.py index 578a555d..4ec2fb03 100644 --- a/unpythonic/syntax/scopeanalyzer.py +++ b/unpythonic/syntax/scopeanalyzer.py @@ -303,6 +303,8 @@ def get_names_in_store_context(tree): - The names in the as-part of ``With`` + - The names bound in `match`/`case` patterns (Python 3.10+) + Duplicates may be returned; use ``set(...)`` or ``list(uniqify(...))`` on the output to remove them.