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 serhiy.storchaka
Recipients Mark.Shannon, ezio.melotti, r.david.murray, serhiy.storchaka, vstinner
Date 2015-09-24.15:15:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1714406.QaXxgCbNGh@raxxla>
In-reply-to <1443105224.39.0.368786880601.issue25210@psf.upfronthosting.co.za>
Content
It makes the error message just non-relevant (or misleading) to the error.
It refers to int < NoneType, but actually the exception is raised when you 
compare an int instance with a NoneType instance, not two types theirself. 
Comparing *any two types* raises an exception, but comparing instances of two 
types can return a result.
History
Date User Action Args
2015-09-24 15:15:59serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, ezio.melotti, r.david.murray, Mark.Shannon
2015-09-24 15:15:59serhiy.storchakalinkissue25210 messages
2015-09-24 15:15:59serhiy.storchakacreate