diff options
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 94a2715..6cc5c4a 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -2984,7 +2984,7 @@ compiler_genexp(struct compiler *c, expr_ty e) { static identifier name; if (!name) { - name = PyUnicode_FromString("<genexp>"); + name = PyUnicode_FromString("<genexpr>"); if (!name) return 0; } |