]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo when "PyObject*" was changed to "identifier"
authorKristján Valur Jónsson <kristjan@ccpgames.com>
Fri, 23 Mar 2012 12:50:53 +0000 (12:50 +0000)
committerKristján Valur Jónsson <kristjan@ccpgames.com>
Fri, 23 Mar 2012 12:50:53 +0000 (12:50 +0000)
Python/future.c

index 83465a8710d612a82696d70df6a4de75cc08312a..d24ae416ff5d1ba03938bc39628925e2c276415e 100644 (file)
@@ -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) {