diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-11-20 04:37:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-11-20 04:37:00 (GMT) |
commit | 787cddc93dbaeb26fae06947078c1359f1fca376 (patch) | |
tree | 644b75a7a15d19b9274dcb1c69d6a9b6a34620a8 /Parser | |
parent | fdd52bea4497138c0e7bbfc3f1df64ff946754eb (diff) | |
download | cpython-787cddc93dbaeb26fae06947078c1359f1fca376.zip cpython-787cddc93dbaeb26fae06947078c1359f1fca376.tar.gz cpython-787cddc93dbaeb26fae06947078c1359f1fca376.tar.bz2 |
Merged revisions 86545 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r86545 | benjamin.peterson | 2010-11-19 22:31:07 -0600 (Fri, 19 Nov 2010) | 1 line
new plan: functions that want 'tmp' can declare it
........
Diffstat (limited to 'Parser')
-rwxr-xr-x | Parser/asdl_c.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index 5d896ef..6df11f5 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -365,10 +365,7 @@ class Obj2ModVisitor(PickleVisitor): self.emit("int", 0) self.emit("obj2ast_%s(PyObject* obj, %s* out, PyArena* arena)" % (name, ctype), 0) self.emit("{", 0) - self.emit("PyObject* tmp = NULL;", 1) self.emit("int isinstance;", 1) - # Prevent compiler warnings about unused variable. - self.emit("tmp = tmp;", 1) self.emit("", 0) def sumTrailer(self, name, add_label=False): @@ -403,6 +400,7 @@ class Obj2ModVisitor(PickleVisitor): def complexSum(self, sum, name): self.funcHeader(name) + self.emit("PyObject *tmp = NULL;", 1) for a in sum.attributes: self.visitAttributeDeclaration(a, name, sum=sum) self.emit("", 0) |