0
votes
8answers
65 views

Using a timer in a while true loop in Python

I have a problem in managing a infinite while loop in Python, in which I would insert a timer as a sort of "watchdog". I try to explain better: the script has to listen on a serial channel and wait ...
0
votes
3answers
33 views

code desing and error handling: exit program with an error in python

I am aware of a few ways to terminate a python script but here I am looking for a good and robust code design (sort of a recommended way to do this). Most of my code is written in functions that are ...
1
vote
1answer
40 views

how to kill a processus from an other processus?

I have 2 processus here : def listen() : while 1 : data = sock.recv(1024) ip_header = data[:20] ips = ip_header[-8:-4] source = '%i.%i.%i.%i' % (ord(ips[0]), ord(ips[1]), ...
0
votes
1answer
29 views

Use `unittest` to verify that the `exit` function was called

I defined a very simple configuration manager (parses config files and verifies that certain keys exist in them) and now I'm writing some tests for it. In many cases where the config file is is ...
1
vote
1answer
177 views

Terminate python threads using sys.exit()

I am looking for a way to terminate a thread by using sys.exit(). I have two functions add1() and subtract1(), which are executed by each thread t1 and t2 respectively. I want to terminate t1 after ...
2
votes
1answer
80 views

Get tkinter.tclerror when closing python turtle before it finished it's draw

I have a python script that draws a koch snowflake. Everything works fine, except if I close the tutle graphics window before the drawing finished I get a long error with this as a final line: ...
0
votes
0answers
39 views

curl error handling in non-html transfer

I'm using http as a general-purpose transport protocol with no browser or HTML involvement; a file gets uploaded to a server from a command-line client tool, processed, and the output file is ...
2
votes
2answers
121 views

Exiting pygame window on click

Making my first post here (or frankly any forum), but I was wondering why I can't exit on when the window's exit button [x] has been pressed. I have tried: #print "Exit value ", pygame.QUIT for et in ...
1
vote
3answers
65 views

how to stop the current execution of a system call in python

From python I am calling a java function: os.system("java -jar example.jar run myFunction 'inFile.txt' 'outFile.txt' " ) This function is processing a file and the output is written into ...
2
votes
1answer
201 views

Tkinter python quit/exit crash

Im making a GUI and want to add an exit button to close the window. The only problem is, when i add a button with the following code: root = Tk() Exit = Button(root, text = "Quit", command = ...
0
votes
2answers
92 views

Python: pygame.QUIT()

Just been messing around with pygame and ran into this error. CODE: import sys import pygame pygame.init() size = width, height = 600, 400 screen = pygame.display.set_mode(size) while 1: ...
1
vote
2answers
366 views

Why are the methods sys.exit(), exit(), raise SystemExit not working?

I need an alternative to kill the python script while inside a thread function. My intention is killing the server when the client enters a 0... Is this not working because the threads haven't been ...
0
votes
2answers
103 views

How to wrap existing script with infinite loop?

I have script which has many sys.exit() and raw_input() commands. I'd like to wrap it with infinite loop. The forever.py is running from windows idle. Something like code below, but it doesn't work. ...
1
vote
1answer
161 views

python - multithreading — join() method

import threading, time class test(threading.Thread): def __init__(self,name,delay): threading.Thread.__init__(self) self.name = name self.delay = delay ...
1
vote
1answer
105 views

How to implement the “exit” action in PyQt4?

Many software have an "exit" action in the menubar items. I wonder know how to implement it in pyqt4. I think only invoking the method QtCore.QCoreApplication.quit() is not enough, because the ...
2
votes
3answers
451 views

Python CTRL-C exit without traceback?

Building a simple Python game of "Rock, Paper, Scissors" for learning purposes. I've read some other posts here on exiting from Python without a traceback. I'm trying to implement it but still ...
0
votes
1answer
110 views

Terminate python application waiting on semaphore

I would like to know why doesn't python2.7 drop blocking operations when ctrl+c is pressed, I am unable to kill my threaded application, there are several socket waits, semaphore waits and so on. In ...
1
vote
1answer
99 views

Return value outside of sys.exit default interval [0-127]

Is there any way to exit with an arbitrary value from a simple python script? Actually, I'd like to return with a port number. I've read around here and in the docs as well, but found only ...
0
votes
0answers
136 views

python multiprocess will auto exit

I'm sorry my english is very poor,but I will try to explain it simply. My situation is every process I use Tkinter create a dialog.And then create a class name engine which create 6 threads then ...
1
vote
0answers
361 views

How can I have a python script safely exit itself?

Heres the scenario I have a password that must be entered if entered wrong the script will not proceed and just exit itself? But how can I tell the script to safely exit itself? I tried sys.exit() ...
2
votes
3answers
404 views

Clean shutdown of a Python script

I have a threaded server written in Python that I start using the following shell script: #!/bin/bash base_path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" public_dns=$(curl -s ...
1
vote
2answers
275 views

how to exit the entire app in a multiprocessing program

Here is the sample codes, just as the codes described, i want to exit the entire app in one running processing. but when i invoke the exit(0) function, some other processings are still running. so how ...
0
votes
2answers
236 views

How do I programmatically stop execution of a python script, without closing python and maintaining the variables?

I have an object oriented program and I want to stop execution and maintain the python memory of all the variables that where in memory during execution. I want to do that so that I can experiment ...
2
votes
2answers
125 views

is it possible to use import after sys.exit(1)?

I have a GetVars() function (not supposed to be changed), it throws sys.exit(1) in some cases. I want to do some cleanup for this case: try: common_func.GetVars() except SystemExit: cmdline = ...
3
votes
1answer
253 views

Python's sys.exit behavior when a non-daemon thread is waiting indefinitely on a lock

I am relatively new to Python and would like to understand the behavior of sys.exit() in the following case. Main thread calls a sys.exit() but there's another non-daemon thread which was already ...
0
votes
3answers
140 views

stop threads when exception happen

I have 10 threads, the problem is when something wrong happens raising the exception, bye will be printed 10 times. I just want to print it once, then terminate all the threads. Is there any solution ...
1
vote
2answers
144 views

How to stop a code running due to an input error without causing the GUI from crashing

I had a program developed in Python (2.7 & 3.2) that reads three files and generates some code based on those files. In the code, I had several input file checks to capture any input errors by ...
1
vote
1answer
767 views

SystemExit and NameError issues with exiting

def main(): try: print "hardfart" return 0 except: return 1 if __name__ == '__main__': exit(main()) Can one kind programmer tell me why this spits out the ...
1
vote
4answers
4k views

exiting a Python function call

How can my program exit a function call? I have a recursive function that, when a condition is satisfied, calls itself. def function( arg ): if (condition): ... return function( ...
1
vote
3answers
716 views

os.system('exit') in python

My friend is in a macOS environment and he wanted to call os.system('exit') at the end of his python script to make the terminal close. It doesn't. This doesn't surprise me but I would like to know ...
0
votes
3answers
2k views

Python run system command and then exit… won't exit

I have the following code: os.system("C:/Python27/python.exe C:/GUI/TestGUI.py") sys.exit(0) It runs the command fine, and a window pops up. However, it doesn't exit the first script. It just stays ...
0
votes
1answer
485 views

How do I exit a Python program that has a thread running?

I'm writing some simple code and I use Pygame for graphics and I have a thread that draws everything. When I call sys.exit() or just ctrl+c, the main program exits but the thread seems to still be ...
2
votes
0answers
711 views

Using os._exit(0) to stop pythoncom.PumpMessages()

I am running pythoncom.PumpMessages() inside a thread. This line will cause the thread to stop and wait for events. I have been unable to send WM_QUIT, which needs to be sent to stop this line from ...
2
votes
2answers
1k views

Ending a Program Mid-Run

pythoncom.PumpMessages() From what I understand this line basically tells the program to wait forever. For my purposes it seems to be working. However, I'd like to be able to end the program given ...
7
votes
1answer
241 views

How to prevent embeded python to exit() my process

I'm having trouble while running embedded python. It turns out that I can't capture that SystemExit exception raised by sys.exit(); This is what I have so far: $ cat call.c #include ...
2
votes
1answer
482 views

Python: How can I make my tkinter app exit properly?

I need to know how to do this on a mac because whenever I try quitting it, I have to force quit it. Is there a proper way when the user clicks the exit button that Tkinter will exit normally?
0
votes
2answers
450 views

Quitting Python socket client with open connection?

The following script receiving data from a socket connection does not react to the CTRL+C signal sent in order to exit: #!/usr/bin/python # -*- coding: utf-8 -*- """ """ import socket HOST = ...
1
vote
3answers
2k views

Intercept Tkinter “Exit” command?

I'm writing a client-server program in Python with Tkinter. I need the server to keep track of the connected clients. For this, I would like to have the client send an automated message to the ...
1
vote
1answer
436 views

How to stop infinite recursion when Python objects trigger each other's updates?

I'm using PyGTK and the gtk.Assistant widget. On one page I have six comboboxes, which initially have the same contents (six numbers). When the users selects a number in one of those comboboxes, this ...
4
votes
3answers
2k views

Doing something before program exit

How can you have a function or something that will be executed before your program quits? I have a script that will be constantly running in the background, and I need it to save some data to a file ...
0
votes
1answer
172 views

Python scripts (curses + pysqlite) hanging after parent shell goes away

I've written a python script which does some curses and pysqlite stuff, but I've noticed that in occasions where I've been running this script over ssh when that ssh session is killed for whatever ...
6
votes
4answers
6k views

Is there a method that tells my program to quit?

For the "q" (quit) option in my program menu, I have the following code: elif choice == "q": print() That worked all right until I put it in an infinite loop, which kept printing blank lines. ...
1
vote
4answers
2k views

Exit to command line in Python

I have a script that I want to exit early under some condition: if not "id" in dir(): print "id not set, cannot continue" # exit here! # otherwise continue with the rest of the script... ...
15
votes
6answers
4k views

Python subprocess: callback when cmd exits

I'm currently launching a programme using subprocess.Popen(cmd, shell=TRUE) I'm fairly new to Python, but it 'feels' like there ought to be some api that lets me do something similar to: ...
3
votes
2answers
683 views

How to catch exit() in embedded C++ module from python code?

I am embedding a c++ library (binding done with SIP) in my python application. Under certain circonstances (error cases), this library uses exit(), which causes my entire application to exit. Is ...
4
votes
2answers
5k views

Prompt on exit in PyQt application

Is there any way to promt user to exit the gui-program written in Python? Something like "Are you sure you want to exit the program?" I'm using PyQt.
6
votes
2answers
1k views

Python: Why does `sys.exit(msg)` called from a thread not print `msg` to stderr?

Today I ran against the fact, that sys.exit() called from a child-thread does not kill the main process. I did not know this before, and this is okay, but I needed long time to realize this. It would ...
45
votes
5answers
77k views

How to exit from python without traceback?

I would like to know how to I exit from python without having an traceback dump on the output. I still want want to be able to return an error code but I do not want to display the traceback log. I ...
2
votes
4answers
3k views

exit failed script run (python)

I have seen several questions about exiting a script after a task is successfully completed, but is there a way to do the same for a script which has failed? I am writing a testing script which just ...
36
votes
9answers
60k views

How do I abort the execution of a Python script? [duplicate]

Possible Duplicate: Terminating a Python script I have a simple Python script that I want to stop executing if a condition is met. For example: done = True if done: # quit/stop/exit ...

1 2