diff --git a/Python/compile.c b/Python/compile.c index 47c57f48e18..a883f5f7c38 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1961,7 +1961,7 @@ compiler_lambda(struct compiler *c, expr_ty e) arguments_ty args = e->v.Lambda.args; assert(e->kind == Lambda_kind); - name = PyString_InternFromString("lambda"); + name = PyString_InternFromString(""); if (!name) return 0;