]> granicus.if.org Git - python/commitdiff
Tweak wording about equality comparison.
authorBrett Cannon <bcannon@gmail.com>
Wed, 9 Feb 2011 22:55:13 +0000 (22:55 +0000)
committerBrett Cannon <bcannon@gmail.com>
Wed, 9 Feb 2011 22:55:13 +0000 (22:55 +0000)
Doc/howto/pyporting.rst

index 3d9ef7fe0c8606f78ed745a0fa892c0ea44c0590..fc08d18a90f20b3e65df802ad647c21b6839b8c9 100644 (file)
@@ -380,7 +380,7 @@ it can be very misleading::
    >>> b"" == ""
    False
 
-This is because comparison for equality is required by the language to always
+This is because an equality comparison is required by the language to always
 succeed (and return ``False`` for incompatible types).  However, this also
 means that code incorrectly ported to Python 3 can display buggy behaviour
 if such comparisons are silently executed.  To detect such situations,