This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2007年03月23日 20:50 by al65536, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| cursesbug.py | al65536, 2007年03月23日 20:51 | test case | ||
| Messages (5) | |||
|---|---|---|---|
| msg31638 - (view) | Author: al65536 (al65536) | Date: 2007年03月23日 20:50 | |
#!/usr/bin/python import curses # Will works scr=curses.initscr() key=-1 try: try: key=scr.getkey() except: pass except KeyboardInterrupt: key="CTRL-C" curses.endwin() print key # Will fail scr=curses.initscr() key=-1 try: key=scr.getkey() except KeyboardInterrupt: key="CTRL-C" curses.endwin() print key |
|||
| msg31639 - (view) | Author: al65536 (al65536) | Date: 2007年03月23日 20:51 | |
python file attached File Added: cursesbug.py |
|||
| msg87792 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年05月15日 02:36 | |
Seems related to #706406 and #3180. |
|||
| msg193509 - (view) | Author: Ronald Oussoren (ronaldoussoren) * (Python committer) | Date: 2013年07月22日 07:26 | |
I cannot reproduce this with a recent 2.7 build from mercurial, but can reproduce with /usr/bin/python (2.7.2) on OSX 10.8 and python 2.7.3 on Centos 6.4 system. |
|||
| msg233529 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2015年01月06日 11:56 | |
I cannot reproduce it on Python 2.7.9+. I get the following output which is the expected output: --- -1 CTRL-C --- Since this bug is 8 years old. I guess that the bug was already fixed, or maybe it can only be reproduced on a specific platform. But the platform or the specific conditions to reproduce the issue were not described. I close this issue. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:23 | admin | set | github: 44769 |
| 2015年01月06日 11:56:57 | vstinner | set | status: open -> closed nosy: + vstinner messages: + msg233529 resolution: out of date |
| 2014年12月31日 16:24:03 | akuchling | set | nosy:
- akuchling |
| 2013年07月22日 07:26:51 | ronaldoussoren | set | nosy:
+ ronaldoussoren messages: + msg193509 versions: + Python 2.7, - Python 2.6 |
| 2010年11月12日 20:57:33 | akuchling | set | assignee: akuchling -> |
| 2009年05月15日 02:36:58 | ajaksu2 | set | versions:
+ Python 2.6, - Python 2.5 nosy: + ajaksu2 messages: + msg87792 type: behavior stage: test needed |
| 2008年01月21日 13:50:17 | akuchling | set | assignee: akuchling nosy: + akuchling title: cannot catch KeyboardInterrupt when using curses getkey() -> cannot catch KeyboardInterrupt when using curses getkey() |
| 2007年03月23日 20:50:12 | al65536 | create | |