summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/future.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/future.c b/Python/future.c
index 89592e2..83465a8 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) {