4 Dec
2020
4 Dec
'20
7:28 p.m.
Irit Katriel <iritkatriel@yahoo.com> added the comment: I don't see a difference between getpass and input in this respect: ---------------- import getpass try: getpass.getpass('getpass: ') except: pass print('goodbye getpass') try: input('input: ') except: pass print('goodbye input') ------------------ If I run that script and ^C after each prompt, I get this:
python.bat x.py Running Release|x64 interpreter... getpass: goodbye getpass input: goodbye input
---------- nosy: +iritkatriel resolution: -> works for me status: open -> pending _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue24711> _______________________________________