diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-22 14:39:16 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-22 14:39:16 (GMT) |
commit | 219a05094bbe76e332fd18cdbdddae4a0a0b88da (patch) | |
tree | cec51b26ed3339dcd20f729ef8231d9ac842c641 /Python | |
parent | 72c6227df88f485ddb851ea95c39918e468bf0d5 (diff) | |
download | cpython-219a05094bbe76e332fd18cdbdddae4a0a0b88da.zip cpython-219a05094bbe76e332fd18cdbdddae4a0a0b88da.tar.gz cpython-219a05094bbe76e332fd18cdbdddae4a0a0b88da.tar.bz2 |
this should technicaly be identifier
Diffstat (limited to 'Python')
-rw-r--r-- | Python/future.c | 2 |
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) { |