diff options
| author | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2012-03-23 12:50:53 (GMT) |
|---|---|---|
| committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2012-03-23 12:50:53 (GMT) |
| commit | c5d47d5ac3824f8b0788795897236ac02da0c954 (patch) | |
| tree | 142499ab6967311b24fdab66a43eeb286d407671 | |
| parent | b81e5388b6373ee10f5e813b91d6a0c493620d57 (diff) | |
| download | cpython-c5d47d5ac3824f8b0788795897236ac02da0c954.zip cpython-c5d47d5ac3824f8b0788795897236ac02da0c954.tar.gz cpython-c5d47d5ac3824f8b0788795897236ac02da0c954.tar.bz2 | |
Fix typo when "PyObject*" was changed to "identifier"
| -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 83465a8..d24ae41 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) { |
