From: Benjamin Peterson Date: Thu, 22 Mar 2012 14:39:16 +0000 (-0400) Subject: this should technicaly be identifier X-Git-Tag: v2.7.4rc1~953 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=219a05094bbe76e332fd18cdbdddae4a0a0b88da;p=python this should technicaly be identifier --- 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) {