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 mgiuca
Recipients georg.brandl, mgiuca
Date 2008-09-08.06:49:28
SpamBayes Score 0.00014196568
Marked as misclassified No
Message-id <1220856570.81.0.704917897963.issue3803@psf.upfronthosting.co.za>
In-reply-to
Content
I've noticed that in Python 3.0, the <, >, <= and >= operators now raise
a TypeError when comparing objects of different types, rather than
ordering them "consistently but arbitrarily". The documentation doesn't
yet reflect this behaviour.

The current documentation says:
"(This unusual definition of comparison was used to simplify the
definition of operations like sorting and the in and not in operators.
In the future, the comparison rules for objects of different types are
likely to change.)"

I assume this is the change it's warning us about.

Hence I propose this patch to reference/expressions.rst, which removes
the above quoted paragraph and describes the new TypeError-raising
behaviour. My text is as follows:

"The objects need not have the same type. If both are numbers, they are
converted to a common type. Otherwise, the == and != operators always
consider objects of different types to be unequal, while the <, >, >=
and <= operators raise a TypeError when comparing objects of different
types."
History
Date User Action Args
2008-09-08 06:49:31mgiucasetrecipients: + mgiuca, georg.brandl
2008-09-08 06:49:30mgiucasetmessageid: <1220856570.81.0.704917897963.issue3803@psf.upfronthosting.co.za>
2008-09-08 06:49:30mgiucalinkissue3803 messages
2008-09-08 06:49:29mgiucacreate