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 zach.ware
Recipients Lyn Levenick, SilentGhost, lukasz.langa, lys.nikolaou, ned.deily, rhettinger, xtreak, zach.ware
Date 2019-03-06.22:30:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1551911406.47.0.225294656906.issue36218@roundup.psfhosted.org>
In-reply-to
Content
Confirmed on Linux:

$ python3.6
Python 3.6.8 (default, Mar  5 2019, 22:01:36) 
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> [(1.0, 1.0), (False, "A"), 6].sort()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: '<' not supported between instances of 'int' and 'tuple'
>>> 
$ python3.7
Python 3.7.2 (default, Mar  5 2019, 22:05:50) 
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> [(1.0, 1.0), (False, "A"), 6].sort()
Segmentation fault
History
Date User Action Args
2019-03-06 22:30:06zach.waresetrecipients: + zach.ware, rhettinger, ned.deily, SilentGhost, lukasz.langa, lys.nikolaou, xtreak, Lyn Levenick
2019-03-06 22:30:06zach.waresetmessageid: <1551911406.47.0.225294656906.issue36218@roundup.psfhosted.org>
2019-03-06 22:30:06zach.warelinkissue36218 messages
2019-03-06 22:30:06zach.warecreate