From: Bartosz Sławecki Date: Sat, 3 Jan 2026 10:08:42 +0000 (+0100) Subject: Fix dunder name typo in compiler code comment (#143374) X-Git-Tag: v3.15.0a5~11^2~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d05e55de0f9c0b07fb14b4d2b9cf9c8eee2042c;p=thirdparty%2FPython%2Fcpython.git Fix dunder name typo in compiler code comment (#143374) --- diff --git a/Python/compile.c b/Python/compile.c index 6951c98500df..1ab96a37f683 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -634,7 +634,7 @@ _PyCompile_EnterScope(compiler *c, identifier name, int scope_type, } } if (u->u_ste->ste_has_conditional_annotations) { - /* Cook up an implicit __conditional__annotations__ cell */ + /* Cook up an implicit __conditional_annotations__ cell */ Py_ssize_t res; assert(u->u_scope_type == COMPILE_SCOPE_CLASS || u->u_scope_type == COMPILE_SCOPE_MODULE); res = _PyCompile_DictAddObj(u->u_metadata.u_cellvars, &_Py_ID(__conditional_annotations__));