]> granicus.if.org Git - python/commit
Change all occurrences of verify(x == y) into vereq(x, y), since when
authorGuido van Rossum <guido@python.org>
Mon, 8 Oct 2001 16:35:45 +0000 (16:35 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 8 Oct 2001 16:35:45 +0000 (16:35 +0000)
commit4570455813b2fca60a659b1ac0aa324e28f87619
treeb94aa03ecb592e93f27fe1889cace6e09fe82e99
parentb35f0ce2b82ff3ffe8f1b961557af3cbebf88da7
Change all occurrences of verify(x == y) into vereq(x, y), since when
this type of test fails, vereq() does a better job of reporting than
verify().

Change vereq(x, y) to use "not x == y" rather than "x != y" -- it
makes a difference is some overloading tests.
Lib/test/test_descr.py