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 xtreak
Recipients uppalanchupavankumar45@gmail.com, xtreak
Date 2019-09-02.17:58:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567447087.09.0.159129472609.issue38012@roundup.psfhosted.org>
In-reply-to
Content
Here min uses the ASCII value of the letters for comparison. So for 'Infinity' 'I' (73) has the lowest value and for 'inFinity' 'F' (70) has the lowest value as seen below.

>>> list(map(lambda c: (c, ord(c)), 'Infinity'))
[('I', 73), ('n', 110), ('f', 102), ('i', 105), ('n', 110), ('i', 105), ('t', 116), ('y', 121)]
>>> list(map(lambda c: (c, ord(c)), 'inFinity'))
[('i', 105), ('n', 110), ('F', 70), ('i', 105), ('n', 110), ('i', 105), ('t', 116), ('y', 121)]
History
Date User Action Args
2019-09-02 17:58:07xtreaksetrecipients: + xtreak, uppalanchupavankumar45@gmail.com
2019-09-02 17:58:07xtreaksetmessageid: <1567447087.09.0.159129472609.issue38012@roundup.psfhosted.org>
2019-09-02 17:58:07xtreaklinkissue38012 messages
2019-09-02 17:58:07xtreakcreate