summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-22 14:39:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-22 14:39:16 (GMT)
commit9faf5ee7509276eb3aef4463ba778632ef4a5fd4 (patch)
tree94bc7e5b54b136be3b23ff3f80350abc34daa1b3 /Python
parent0197ff97d025f51d52503b03dca2c91a111acdaa (diff)
downloadcpython-9faf5ee7509276eb3aef4463ba778632ef4a5fd4.zip
cpython-9faf5ee7509276eb3aef4463ba778632ef4a5fd4.tar.gz
cpython-9faf5ee7509276eb3aef4463ba778632ef4a5fd4.tar.bz2
this should technicaly be identifier
Diffstat (limited to 'Python')
-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) {