summaryrefslogtreecommitdiff
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-08-24 03:53:23 +0000
committerGuido van Rossum <guido@python.org>2006-08-24 03:53:23 +0000
commit76ea86827bca32c5044bbe46e76b2c0a73623486 (patch)
treecb62f554b513c01722e06f172490587618b40879 /Parser
parent795dc76ce3e471a503df313633cbf833e0f2483e (diff)
downloadcpython-76ea86827bca32c5044bbe46e76b2c0a73623486.tar.gz
Killed the <> operator. You must now use !=.
Opportunistically also fixed one or two places where '<> None' should be 'is not None' and where 'type(x) <> y' should be 'not isinstance(x, y)'.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/tokenizer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index 885b91622a..b734a1288c 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -982,7 +982,6 @@ PyToken_TwoChars(int c1, int c2)
break;
case '<':
switch (c2) {
- case '>': return NOTEQUAL;
case '=': return LESSEQUAL;
case '<': return LEFTSHIFT;
}