Skip to content

Commit 1607317

Browse files
committed
Fix typo in compiler code comment
1 parent b538c28 commit 1607317

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ _PyCompile_EnterScope(compiler *c, identifier name, int scope_type,
634634
}
635635
}
636636
if (u->u_ste->ste_has_conditional_annotations) {
637-
/* Cook up an implicit __conditional__annotations__ cell */
637+
/* Cook up an implicit __conditional_annotations__ cell */
638638
Py_ssize_t res;
639639
assert(u->u_scope_type == COMPILE_SCOPE_CLASS || u->u_scope_type == COMPILE_SCOPE_MODULE);
640640
res = _PyCompile_DictAddObj(u->u_metadata.u_cellvars, &_Py_ID(__conditional_annotations__));

0 commit comments

Comments
 (0)