projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9c69bc
)
The cleanup code in com-init() at label fail_0000 should remove
author
Guido van Rossum
<guido@python.org>
Mon, 20 Dec 1999 20:40:12 +0000
(20:40 +0000)
committer
Guido van Rossum
<guido@python.org>
Mon, 20 Dec 1999 20:40:12 +0000
(20:40 +0000)
c_varnames, not c_lnotab.
Python/compile.c
patch
|
blob
|
history
diff --git
a/Python/compile.c
b/Python/compile.c
index e4e37d53f8cb0e7ad0199dfc92fa78a75d3c29ba..37cdfc9b9bed4b837b259cbfd63a18aad70ed160 100644
(file)
--- a/
Python/compile.c
+++ b/
Python/compile.c
@@
-457,7
+457,7
@@
com_init(c, filename)
return 1;
fail_0000:
- Py_DECREF(c->c_
lnotab
);
+ Py_DECREF(c->c_
varnames
);
fail_000:
Py_DECREF(c->c_locals);
fail_00: