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)
commit219a05094bbe76e332fd18cdbdddae4a0a0b88da (patch)
treecec51b26ed3339dcd20f729ef8231d9ac842c641 /Python
parent72c6227df88f485ddb851ea95c39918e468bf0d5 (diff)
downloadcpython-219a05094bbe76e332fd18cdbdddae4a0a0b88da.zip
cpython-219a05094bbe76e332fd18cdbdddae4a0a0b88da.tar.gz
cpython-219a05094bbe76e332fd18cdbdddae4a0a0b88da.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 4c1c347..0e68845 100644
--- a/Python/future.c
+++ b/Python/future.c
@@ -85,7 +85,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 && PyString_GET_SIZE(modname) == 10 &&
!strcmp(PyString_AS_STRING(modname), "__future__")) {
if (done) {