[Python-checkins] cpython (3.2): this should technicaly be identifier
benjamin.peterson
python-checkins at python.org
Thu Mar 22 15:40:29 CET 2012
http://hg.python.org/cpython/rev/79422b3684f1
changeset: 75877:79422b3684f1
branch: 3.2
parent: 75875:f34ac2e9d5cf
user: Benjamin Peterson <benjamin at python.org>
date: Thu Mar 22 10:39:16 2012 -0400
summary:
this should technicaly be identifier
files:
Python/future.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Python/future.c b/Python/future.c
--- a/Python/future.c
+++ b/Python/future.c
@@ -86,7 +86,7 @@
*/
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) {
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list