Closed bjorkelundflyhau closed 1 month ago
This issue was already fixed (see #1306). Please upgrade to the 2.3.5 version of PSReadLine from PowerShell Gallery. See the upgrading section for instructions. Please let us know if you run into the same issue with the latest version.
Prerequisites
Exception report
Screenshot
Environment data
Steps to reproduce
low = 1 high = 1000
print("Please think of a number between {} and {}".format(low, high)) input ("Press ENTER to start")
guesses = 1 while low != high:
print("\tGuessing in the range of {} and {}".format(low, high))
else: print("You thought of the number {}".format(low)) print("I got it in {} guesses".format(guesses))
Expected behavior
Debugging of a .py file
Actual behavior
The above exception happens.