commit | 57071ce545f031e986cb6b2090340bae33d042ec | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Fri Oct 21 05:15:07 2005 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Fri Oct 21 05:15:07 2005 +0000 |
tree | adf64545808a97a27123352a6361d3eea3293f8c | |
parent | f21c8ed58ade5e8fcaebe96b7f3cba8d25a1938f [diff] |
Oops, "=" is not a comparison operator
diff --git a/Python/ast.c b/Python/ast.c index 475382c..c40c355 100644 --- a/Python/ast.c +++ b/Python/ast.c
@@ -471,7 +471,6 @@ case GREATER: return Gt; case EQEQUAL: /* == */ - case EQUAL: return Eq; case LESSEQUAL: return LtE;