]> granicus.if.org Git - python/commit
Killed the <> operator. You must now use !=.
authorGuido van Rossum <guido@python.org>
Thu, 24 Aug 2006 03:53:23 +0000 (03:53 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 24 Aug 2006 03:53:23 +0000 (03:53 +0000)
commitb053cd8f40dd19985b16f50661640dcefb69888f
tree88e1c2ce636a6df402a97c51ea9067a46735120a
parent01c77c66289f8e9c8d15b8da623fae4014ec2edb
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)'.
36 files changed:
Grammar/Grammar
Lib/bsddb/dbtables.py
Lib/bsddb/test/test_compat.py
Lib/bsddb/test/test_recno.py
Lib/bsddb/test/test_thread.py
Lib/compiler/transformer.py
Lib/email/base64mime.py
Lib/email/charset.py
Lib/email/generator.py
Lib/email/header.py
Lib/email/message.py
Lib/email/quoprimime.py
Lib/email/test/test_email.py
Lib/email/test/test_email_renamed.py
Lib/logging/__init__.py
Lib/plat-mac/FrameWork.py
Lib/plat-mac/buildtools.py
Lib/plat-mac/cfmfile.py
Lib/plat-mac/gensuitemodule.py
Lib/plat-mac/macerrors.py
Lib/test/output/test_class
Lib/test/output/test_tokenize
Lib/test/test_bsddb3.py
Lib/test/test_class.py
Lib/test/test_funcattrs.py
Lib/test/test_grammar.py
Lib/test/test_socket.py
Lib/test/test_wsgiref.py
Lib/test/tokenize_tests.txt
Lib/tokenize.py
Lib/webbrowser.py
Lib/wsgiref/headers.py
Lib/wsgiref/util.py
Parser/tokenizer.c
Python/ast.c
Python/graminit.c