diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-10-21 05:15:07 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-10-21 05:15:07 (GMT) |
commit | 57071ce545f031e986cb6b2090340bae33d042ec (patch) | |
tree | adf64545808a97a27123352a6361d3eea3293f8c /Python | |
parent | f21c8ed58ade5e8fcaebe96b7f3cba8d25a1938f (diff) | |
download | cpython-57071ce545f031e986cb6b2090340bae33d042ec.zip cpython-57071ce545f031e986cb6b2090340bae33d042ec.tar.gz cpython-57071ce545f031e986cb6b2090340bae33d042ec.tar.bz2 |
Oops, "=" is not a comparison operator
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 1 |
1 files changed, 0 insertions, 1 deletions
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 @@ ast_for_comp_op(const node *n) case GREATER: return Gt; case EQEQUAL: /* == */ - case EQUAL: return Eq; case LESSEQUAL: return LtE; |