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 cheryl.sabella
Recipients cheryl.sabella, cvrebert, josh.r, martin.panter, ncoghlan, pitrou, rhettinger, scoder
Date 2018-02-13.16:09:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518538146.01.0.467229070634.issue20632@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks, Nick.

When I first came across this issue, I thought that dataclasses would take care of what you wrote below, but after looking at the original discussion on python-dev, I thought the problem was ordering None within a comparison with None being a valid value in SQLite.

For example,
>>> a = [1, None, 'a']
>>> b = [1, 5, 'b']
>>> a == b
False
>>> a < b
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: '<' not supported between instances of 'NoneType' and 'int'
History
Date User Action Args
2018-02-13 16:09:06cheryl.sabellasetrecipients: + cheryl.sabella, rhettinger, ncoghlan, pitrou, scoder, cvrebert, martin.panter, josh.r
2018-02-13 16:09:06cheryl.sabellasetmessageid: <1518538146.01.0.467229070634.issue20632@psf.upfronthosting.co.za>
2018-02-13 16:09:05cheryl.sabellalinkissue20632 messages
2018-02-13 16:09:05cheryl.sabellacreate