summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 47c57f4..a883f5f 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("<lambda>");
if (!name)
return 0;