From 9faf5ee7509276eb3aef4463ba778632ef4a5fd4 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 22 Mar 2012 10:39:16 -0400 Subject: [PATCH] this should technicaly be identifier --- Python/future.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/future.c b/Python/future.c index 89592e22242..83465a8710d 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) { - PyObject *modname = s->v.ImportFrom.module; + identifier *modname = s->v.ImportFrom.module; if (modname && !PyUnicode_CompareWithASCIIString(modname, "__future__")) { if (done) {