summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 1b5fa6ccc2..9a0b0649db 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -535,11 +535,11 @@ init_normalization(struct compiling *c)
if (!c->c_normalize)
return 0;
c->c_normalize_args = Py_BuildValue("(sN)", "NFKC", Py_None);
- PyTuple_SET_ITEM(c->c_normalize_args, 1, NULL);
if (!c->c_normalize_args) {
Py_CLEAR(c->c_normalize);
return 0;
}
+ PyTuple_SET_ITEM(c->c_normalize_args, 1, NULL);
return 1;
}