summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-12-04 02:41:46 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-12-04 02:41:46 (GMT)
commit86424e333f1736591114da975c8d2926ba6f51f5 (patch)
tree6bc48e16d500640a0f448eac30521a3c24337159 /Python/compile.c
parent22a51efc1cb9b3d5c945bf90fd8906306c367604 (diff)
downloadcpython-86424e333f1736591114da975c8d2926ba6f51f5.zip
cpython-86424e333f1736591114da975c8d2926ba6f51f5.tar.gz
cpython-86424e333f1736591114da975c8d2926ba6f51f5.tar.bz2
SF bug #488687 reported by Neal Norwitz
The error for assignment to __debug__ used ste->ste_opt_lineno instead of n->n_lineno. The latter was at best incorrect; often the slot was uninitialized. Two fixes here: Use the correct lineno for the error. Initialize ste_opt_lineno in PySymtable_New(); while there are no current cases where it is referenced unless it has already been assigned to, there is no harm in initializing it.
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 4b2cd07..d76769c 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -5464,7 +5464,7 @@ symtable_assign(struct symtable *st, node *n, int def_flag)
PyErr_SetString(PyExc_SyntaxError,
ASSIGN_DEBUG);
PyErr_SyntaxLocation(st->st_filename,
- st->st_cur->ste_opt_lineno);
+ n->n_lineno);
st->st_errors++;
}
symtable_add_def(st, STR(tmp), DEF_LOCAL | def_flag);