[Python-checkins] cpython (2.7): this should technicaly be identifier
benjamin.peterson
python-checkins at python.org
Thu Mar 22 15:40:30 CET 2012
http://hg.python.org/cpython/rev/e303c55be470
changeset: 75878:e303c55be470
branch: 2.7
parent: 75874:c2d0bf94615d
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
@@ -85,7 +85,7 @@
*/
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) {
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list