summaryrefslogtreecommitdiff
path: root/Python/future.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-22 10:39:16 -0400
committerBenjamin Peterson <benjamin@python.org>2012-03-22 10:39:16 -0400
commitdf18e7a8d30d850784dec55a36bb75c4775f0344 (patch)
tree71fff9f3cb29d153636ece6512eda8ccddbd059d /Python/future.c
parent5854dc6558a2b3dc8419581938b66799d236228f (diff)
downloadcpython-df18e7a8d30d850784dec55a36bb75c4775f0344.tar.gz
this should technicaly be identifier
Diffstat (limited to 'Python/future.c')
-rw-r--r--Python/future.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/future.c b/Python/future.c
index 89592e2224..83465a8710 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) {