From: Kristján Valur Jónsson Date: Fri, 23 Mar 2012 12:50:53 +0000 (+0000) Subject: Fix typo when "PyObject*" was changed to "identifier" X-Git-Tag: v3.3.0a2~78^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5d47d5ac3824f8b0788795897236ac02da0c954;p=thirdparty%2FPython%2Fcpython.git Fix typo when "PyObject*" was changed to "identifier" --- diff --git a/Python/future.c b/Python/future.c index 83465a8710d6..d24ae416ff5d 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) {