Merlijn van Deen <valhall...@gmail.com> added the comment: To allow people to cancel at the password prompt, we added a manual post-check. Although this check runs after return is pressed, it's better than nothing.
Index: branches/rewrite/pywikibot/userinterfaces/terminal_interface.py =================================================================== --- branches/rewrite/pywikibot/userinterfaces/terminal_interface.py (revision 8977) +++ branches/rewrite/pywikibot/userinterfaces/terminal_interface.py (revision 8978) @@ -175,6 +175,11 @@ if password: import getpass text = getpass.getpass('') + # See PYWP-13 / http://bugs.python.org/issue11236 + # getpass does not always raise an KeyboardInterrupt when ^C + # is pressed. + if '\x03' in text: + raise KeyboardInterrupt() else: text = raw_input() finally: http://www.mediawiki.org/wiki/Special:Code/pywikipedia/8978 ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue11236> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com