Skip to content

Commit d4ca048

Browse files
committed
pythongh-119698: symtable: Fix merge race
1 parent b8a8e04 commit d4ca048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/symtable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def is_local_symbol(ident):
250250
match st.type:
251251
case _symtable.TYPE_FUNCTION:
252252
d[st.name] = 1
253-
case _symtable.TYPE_TYPE_PARAM:
253+
case _symtable.TYPE_TYPE_PARAMETERS:
254254
# Get the function-def block in the annotation
255255
# scope 'st' with the same identifier, if any.
256256
scope_name = st.name

0 commit comments

Comments
 (0)