> > So is if fair to say Python3 is more stringent when it comes to these > types of comparisons? >
Yes, and that's a good thing. Under Python 2, None always tests less than any number. Under Python 3, such a comparison is an error: None < -1 Python 2: True Python 3: Error -tk -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/CAPq0zEA%3Dwh-6QOFJv4D-f68jS9xUSK88QbdLRf%2BWoHcnY0%3DvGQ%40mail.gmail.com.
