From 219a05094bbe76e332fd18cdbdddae4a0a0b88da 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 4c1c347053..0e68845981 100644 --- a/Python/future.c +++ b/Python/future.c @@ -85,7 +85,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 && PyString_GET_SIZE(modname) == 10 && !strcmp(PyString_AS_STRING(modname), "__future__")) { if (done) { -- 2.50.0