summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2024-12-30 16:19:38 (GMT)
committerGitHub <noreply@github.com>2024-12-30 16:19:38 (GMT)
commit348012432155271cfbee71a78d0c27254fc230e2 (patch)
tree387b0044e245218cc739a65461dc09d23cab2875 /Python
parent2bd5a7ab0f4a1f65ab8043001bd6e8416c5079bd (diff)
downloadcpython-348012432155271cfbee71a78d0c27254fc230e2.zip
cpython-348012432155271cfbee71a78d0c27254fc230e2.tar.gz
cpython-348012432155271cfbee71a78d0c27254fc230e2.tar.bz2
gh-119180: Set the name of the param to __annotate__ to "format" (#124730)
Diffstat (limited to 'Python')
-rw-r--r--Python/codegen.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/Python/codegen.c b/Python/codegen.c
index 6d3272e..7432415 100644
--- a/Python/codegen.c
+++ b/Python/codegen.c
@@ -701,6 +701,33 @@ codegen_leave_annotations_scope(compiler *c, location loc,
ADDOP_I(c, loc, BUILD_MAP, annotations_len);
ADDOP_IN_SCOPE(c, loc, RETURN_VALUE);
PyCodeObject *co = _PyCompile_OptimizeAndAssemble(c, 1);
+
+ // We want the parameter to __annotate__ to be named "format" in the
+ // signature shown by inspect.signature(), but we need to use a
+ // different name (.format) in the symtable; if the name
+ // "format" appears in the annotations, it doesn't get clobbered
+ // by this name. This code is essentially:
+ // co->co_localsplusnames = ("format", *co->co_localsplusnames[1:])
+ const Py_ssize_t size = PyObject_Size(co->co_localsplusnames);
+ if (size == -1) {
+ return ERROR;
+ }
+ PyObject *new_names = PyTuple_New(size);
+ if (new_names == NULL) {
+ return ERROR;
+ }
+ PyTuple_SET_ITEM(new_names, 0, Py_NewRef(&_Py_ID(format)));
+ for (int i = 1; i < size; i++) {
+ PyObject *item = PyTuple_GetItem(co->co_localsplusnames, i);
+ if (item == NULL) {
+ Py_DECREF(new_names);
+ return ERROR;
+ }
+ Py_INCREF(item);
+ PyTuple_SET_ITEM(new_names, i, item);
+ }
+ Py_SETREF(co->co_localsplusnames, new_names);
+
_PyCompile_ExitScope(c);
if (co == NULL) {
return ERROR;