This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients docs@python, eryksun, ipatrol
Date 2017-05-23.05:25:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495517135.14.0.062089088693.issue30435@psf.upfronthosting.co.za>
In-reply-to
Content
How about "cannot be compared by value" or "cannot be ordered by value"? Emphasizing the value aspect doesn't conflict with the default equality comparison by identity.

Note that starting Python with the -b option causes the bytes type to raise a warning in this case:

    >>> sys.flags.bytes_warning
    1
    >>> 'a'.__eq__(b'a')
    NotImplemented

    >>> b'a'.__eq__('a')
    __main__:1: BytesWarning: Comparison between bytes and string
    NotImplemented
History
Date User Action Args
2017-05-23 05:25:35eryksunsetrecipients: + eryksun, ipatrol, docs@python
2017-05-23 05:25:35eryksunsetmessageid: <1495517135.14.0.062089088693.issue30435@psf.upfronthosting.co.za>
2017-05-23 05:25:35eryksunlinkissue30435 messages
2017-05-23 05:25:35eryksuncreate