[issue44627] Python terminal cmd line recall

2021-07-14 Thread jg
. Thank you for your cooperation. From: report=bugs.python@roundup.psfhosted.org on behalf of Eryk Sun Sent: Tuesday, July 13, 2021 16:55 To: jggam...@hotmail.com Subject: [issue44627] Python terminal cmd line recall Eryk Sun added the comment: By default

[issue44627] Python terminal cmd line recall

2021-07-13 Thread Eryk Sun
Eryk Sun added the comment: By default, reading input from the console uses the console's built-in command-line editor. You can clear the console input history with Alt+F7; display the history list with F7; navigate in the history list with the up and down arrow keys, even when the list

[issue44627] Python terminal cmd line recall

2021-07-13 Thread jg
New submission from jg : 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