summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2023-09-14 16:20:32 (GMT)
committerGitHub <noreply@github.com>2023-09-14 16:20:32 (GMT)
commit909adb5092c0ae9426814742d97932204b211cfb (patch)
treeb9e6c45113475b3c96567d21c18136505283a81d /Misc
parent4a54074a0f5579d417445ec28427cd0ed5aa01f4 (diff)
downloadcpython-909adb5092c0ae9426814742d97932204b211cfb.zip
cpython-909adb5092c0ae9426814742d97932204b211cfb.tar.gz
cpython-909adb5092c0ae9426814742d97932204b211cfb.tar.bz2
gh-109219: propagate free vars through type param scopes (#109377)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-09-13-08-42-45.gh-issue-109219.UiN8sc.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-09-13-08-42-45.gh-issue-109219.UiN8sc.rst b/Misc/NEWS.d/next/Core and Builtins/2023-09-13-08-42-45.gh-issue-109219.UiN8sc.rst
new file mode 100644
index 0000000..2c141f0
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-09-13-08-42-45.gh-issue-109219.UiN8sc.rst
@@ -0,0 +1,2 @@
+Fix compiling type param scopes that use a name which is also free in an
+inner scope.