Sep-13-2025, 08:22 PM (This post was last modified: Sep-14-2025, 02:37 AM by deanhystad.)
I am a relatively inexperienced coder running python 3.13 using PyCharm 2025.1.3.1 (Community Edition). I am debugging the following code:
Enter your name:
>? from platform import freedesktop_os_release
>?
>? freedesktop_os_release()
Continuing debugging does not print 'fred' but code that follows executes as expected (the name data is not available). I can prevent this behavior by entering a space after entering the letter 'd' . I think this is a bug.
def name (): text = input ('\n Enter your name: ') print(text) name()When I run this, it behaves as expected, but when I debug it and respond to the prompt with 'fred' I get code completion candidates as I type and when I hit enter after typing 'fred', I get the following.Enter your name:
>? from platform import freedesktop_os_release
>?
>? freedesktop_os_release()
Continuing debugging does not print 'fred' but code that follows executes as expected (the name data is not available). I can prevent this behavior by entering a space after entering the letter 'd' . I think this is a bug.
