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 jggammon
Recipients jggammon, paul.moore, steve.dower, tim.golden, zach.ware
Date 2021-07-13.18:23:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626200632.58.0.557312314472.issue44627@roundup.psfhosted.org>
In-reply-to
Content
Command line recall in python terminal treats strings case insensitively.

Example:
Define a 'dummy' function that takes a string as input. If you run dummy twice with the same input string, but different cases, it only saves one.
>>> dummy("This is a test") # run this
>>> dummy("THIS IS A TEST") # run again w/ different string
Now if you try cmd recall, it only recalls the first.
I believe it should recall both.
Maybe it's treating one as a duplicate - erroneously?
History
Date User Action Args
2021-07-13 18:23:52jggammonsetrecipients: + jggammon, paul.moore, tim.golden, zach.ware, steve.dower
2021-07-13 18:23:52jggammonsetmessageid: <1626200632.58.0.557312314472.issue44627@roundup.psfhosted.org>
2021-07-13 18:23:52jggammonlinkissue44627 messages
2021-07-13 18:23:52jggammoncreate