Skip to content

Commit

Permalink
Merged revisions 86540 via svnmerge from
Browse files Browse the repository at this point in the history
svn+ssh://[email protected]/python/branches/py3k

........
  r86540 | benjamin.peterson | 2010-11-19 20:01:45 -0600 (Fri, 19 Nov 2010) | 1 line

  c89 declarations
........
  • Loading branch information
benjaminp committed Nov 20, 2010
1 parent aab9585 commit e82c169
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Parser/asdl_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,9 @@ def funcHeader(self, name):
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("int isinstance;", 1)
self.emit("", 0)

def sumTrailer(self, name, add_label=False):
Expand Down
20 changes: 10 additions & 10 deletions Python/Python-ast.c
Original file line number Diff line number Diff line change
Expand Up @@ -3379,8 +3379,8 @@ int
obj2ast_mod(PyObject* obj, mod_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;


if (obj == Py_None) {
Expand Down Expand Up @@ -3528,8 +3528,8 @@ int
obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

int lineno;
int col_offset;
Expand Down Expand Up @@ -4725,8 +4725,8 @@ int
obj2ast_expr(PyObject* obj, expr_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

int lineno;
int col_offset;
Expand Down Expand Up @@ -5841,8 +5841,8 @@ int
obj2ast_expr_context(PyObject* obj, expr_context_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

isinstance = PyObject_IsInstance(obj, (PyObject *)Load_type);
if (isinstance == -1) {
Expand Down Expand Up @@ -5901,8 +5901,8 @@ int
obj2ast_slice(PyObject* obj, slice_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;


if (obj == Py_None) {
Expand Down Expand Up @@ -6024,8 +6024,8 @@ int
obj2ast_boolop(PyObject* obj, boolop_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

isinstance = PyObject_IsInstance(obj, (PyObject *)And_type);
if (isinstance == -1) {
Expand All @@ -6052,8 +6052,8 @@ int
obj2ast_operator(PyObject* obj, operator_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

isinstance = PyObject_IsInstance(obj, (PyObject *)Add_type);
if (isinstance == -1) {
Expand Down Expand Up @@ -6160,8 +6160,8 @@ int
obj2ast_unaryop(PyObject* obj, unaryop_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

isinstance = PyObject_IsInstance(obj, (PyObject *)Invert_type);
if (isinstance == -1) {
Expand Down Expand Up @@ -6204,8 +6204,8 @@ int
obj2ast_cmpop(PyObject* obj, cmpop_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

isinstance = PyObject_IsInstance(obj, (PyObject *)Eq_type);
if (isinstance == -1) {
Expand Down Expand Up @@ -6360,8 +6360,8 @@ int
obj2ast_excepthandler(PyObject* obj, excepthandler_ty* out, PyArena* arena)
{
PyObject* tmp = NULL;
tmp = tmp;
int isinstance;
tmp = tmp;

int lineno;
int col_offset;
Expand Down

0 comments on commit e82c169

Please sign in to comment.