From c5d47d5ac3824f8b0788795897236ac02da0c954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Valur=20J=C3=B3nsson?= Date: Fri, 23 Mar 2012 12:50:53 +0000 Subject: Fix typo when "PyObject*" was changed to "identifier" --- Python/future.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/future.c b/Python/future.c index 83465a8..d24ae41 100644 --- a/Python/future.c +++ b/Python/future.c @@ -86,7 +86,7 @@ future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename) */ if (s->kind == ImportFrom_kind) { - identifier *modname = s->v.ImportFrom.module; + identifier modname = s->v.ImportFrom.module; if (modname && !PyUnicode_CompareWithASCIIString(modname, "__future__")) { if (done) { -- cgit v0.12