summaryrefslogtreecommitdiff
path: root/Python/future.c
diff options
context:
space:
mode:
authorKristján Valur Jónsson <kristjan@ccpgames.com>2012-03-23 12:50:53 +0000
committerKristján Valur Jónsson <kristjan@ccpgames.com>2012-03-23 12:50:53 +0000
commitf84f102a23067e752b800f498f4260135094b679 (patch)
tree0a52f56b0d4b4e6e1aa7d87447e3495b693176bd /Python/future.c
parentaa76f83ea71ed1b6ea3168acdb86cf19f46432a9 (diff)
downloadcpython-f84f102a23067e752b800f498f4260135094b679.tar.gz
Fix typo when "PyObject*" was changed to "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 83465a8710..d24ae416ff 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) {
- identifier *modname = s->v.ImportFrom.module;
+ identifier modname = s->v.ImportFrom.module;
if (modname &&
!PyUnicode_CompareWithASCIIString(modname, "__future__")) {
if (done) {