Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
153 views

What is the difference between Ctrl-C and SIGINT?

I have been debugging a Python program which segfaults after receiving a KeyboardInterrupt exception. This is normally done by pressing Ctrl+C from the shell. To test if a particular code change fixed ...
12
votes
5answers
4k views

Keyboard Interrupts with python's multiprocessing Pool

How can I handle KeyboardInterrupt events with python's multiprocessing Pools? Here is a simple example: from multiprocessing import Pool from time import sleep from sys import exit def ...
11
votes
4answers
890 views

Why can't I handle a KeyboardInterrupt in python?

I'm writing python 2.6.6 code on windows that looks like this: try: dostuff() except KeyboardInterrupt: print "Interrupted!" except: print "Some other exception?" finally: print ...
8
votes
1answer
3k views

Python threading ignores KeyboardInterrupt exception

I'm running this my simple code: import threading, time class reqthread ( threading.Thread ): def __init__ (self): threading.Thread.__init__(self) def run ( self ): for i in ...
6
votes
4answers
2k views

Capture keyboardinterrupt in Python without try-except

Is there some way in Python to capture KeyboardInterrupt event without putting all the code inside a try-except statement? I want to cleanly exit without trace if user presses ctrl-c.
3
votes
2answers
126 views

Can't kill my python code. What's wrong?

Okay, so I'm writing a very simplistic password cracker in python that brute forces a password with alphanumeric characters. Currently this code only supports 1 character passwords and a password file ...
3
votes
3answers
1k views

Python: How to prevent subprocesses from receiving CTRL-C / Control-C / SIGINT

I am currently working on a wrapper for a dedicated server running in the shell. The wrapper spawns the server process via subprocess and observes and reacts to its output. The dedicated server must ...
3
votes
4answers
487 views

what is meant by disabling interrupts?

When entering an inteerupt handler, we first "disable interrupts" on that cpu(using something like the cli instruction on x86). During the time that interrupts are disabled, assume say the user ...
2
votes
1answer
98 views

Keyboard interrupts

I am studying low-level device driver stuff. I am confused between interrupts and IRQ. A sample driver code that hooks keyboard suggests keyboard interrupt is 0x31 but my book on microprocessor says ...
1
vote
1answer
133 views

python exit infinite while loop with KeyboardInterrupt exception

My while loop does not exit when Ctrl+C is pressed. It seemingly ignores my KeyboardInterrupt exception. The loop portion looks like this: while True: try: if subprocess_cnt <= ...
1
vote
1answer
62 views

Handling SIGINT in slow system calls

I am very new to Python, so forgive me if this question is very basic. I am trying to handle a keyboard interrupt while accepting data from a socket using select module. So, I have a select.select() ...
1
vote
1answer
117 views

Python KeyboardInterrupt button

I'm using red hat 5 linux, and I would like to know what key combination raises a KeyboardInterrupt exception in python 2.6. I know that it is Ctrl+ c under windows. Regards,
1
vote
1answer
627 views

How to achieve desired results when using the subprocees Popen.send_signal(CTRL_C_EVENT) in Windows?

In python 2.7 in windows according to the documentation you can send a CTRL_C_EVENT (Python 2.7 Subprocess Popen.send_signal documentation). However when I tried it I did not receive the expected ...
1
vote
2answers
2k views

Ctrl-c i.e. KeyboardInterrupt to kill threads in python

I read somewhere that KeyboardInterrupt exception is only read by the main thread in Python. I also read that the main thread is blocked while the child thread executes. So, does this mean that Ctrl-c ...
1
vote
1answer
132 views

Django Keyboard Interrupt

I run my django project with Apache, mod_fastcgi and django.core.servers.fastcgi.runfastcgi. I receive mail about all exceptions. There is one exception I don't know what to do with. It's ...
1
vote
1answer
608 views

Handling KeyboardInterrupt in a KDE Python application?

I'm working on a PyKDE4/PyQt4 application, Autokey, and I noticed that when I send the program a CTRL+C, the keyboard interrupt is not processed until I interact with the application, by ie. clicking ...
0
votes
1answer
69 views

How to ask for input without need of pressing RET - Keyboard Interrupt in C, Linux OS

i have read a lot about what im asking, but the closest thing i have found is using the ncurses library. What im doing is a simple http client which will monitory some remote folders to check if its ...
0
votes
5answers
135 views

Remove traceback in Python on Ctrl-C?

Is there a way to keep tracebacks from coming up when you hit Cntl-c [keyboardInterupt] in a python script?
0
votes
1answer
130 views

KeyboardInterrupt unpredictable in Python 2.7 under ipython, how can I make it *always* abort current evaluation?

I'm writing python code to do numerical analysis, and I've been using ipython or ipython -pylab as my command line interface. I often run into situations where some code is taking for-freaking-ever to ...
0
votes
1answer
362 views

Better keyboard interrupt detection for this threaded Spinner class

Ok, I've wrote this class based in a bunch of others Spinner classes that I've googled in Google Code Search. It's working as intended, but I'm looking for a better way to handle KeyboardInterrupt ...
0
votes
1answer
356 views

My KeyboardInterrupt is only getting caught 90% of the time. What am I failing at?

Here's some slimmed down code that demonstrates my use of threading: import threading import Queue import time def example(): """ used in MainThread as the example generator """ while True: ...
0
votes
1answer
91 views

Python: Double KeyboardInterrupt in Windows?

I'm running a console-based app in Python 3.1.2. I want the app to trap a Ctrl-C at the prompt and handle it according to context. I'm getting the KeyboardInterrupt as expected, but unexpectedly, I'm ...
0
votes
2answers
493 views

twisted - interrupt callback via KeyboardInterrupt

I'm currently repeating a task in a for loop inside a callback using Twisted, but would like the reactor to break the loop in the callback (one) if the user issues a KeyboardInterrupt via Ctrl-C. From ...
0
votes
2answers
301 views

PyScripter - cannot termiate Run with KeyboardInterrupt

#I write alot of small apps where I use try: print "always does this until I Ctrl+C" Except KeyboardInterrupt: print "finish program" I've just began to move away from using IDLE and ...
0
votes
1answer
659 views

KeyboardInterrupt in Windows?

How to generate a KeyboardInterrupt in Windows? while True: try: print 'running' except KeyboardInterrupt: break I expected CTRL+C to stop this program but it doesn't ...