diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-06-01 01:08:32 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-06-01 01:08:32 (GMT) |
commit | 6c8579ed4d76470d7523026e44299d71fdfc0eb5 (patch) | |
tree | 51ffd4c42b467a0f73f9bbfe99bceb377420129a /Lib | |
parent | ce5b6d55b8594971f4935724e73393d605d390be (diff) | |
download | cpython-6c8579ed4d76470d7523026e44299d71fdfc0eb5.zip cpython-6c8579ed4d76470d7523026e44299d71fdfc0eb5.tar.gz cpython-6c8579ed4d76470d7523026e44299d71fdfc0eb5.tar.bz2 |
Set the default for delete-exitfunc in config-main.def to True to handle
abnormal exit situations cleanly, especially stuck user threads. Future
plan is to intercept the user's atexit functions and run them under
IDLE's control.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/config-main.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/config-main.def b/Lib/idlelib/config-main.def index 206c37f..4b545d4 100644 --- a/Lib/idlelib/config-main.def +++ b/Lib/idlelib/config-main.def @@ -43,7 +43,7 @@ editor-on-startup= 0 autosave= 0 print-command-posix=lpr %s print-command-win=start /min notepad /p %s -delete-exitfunc= 0 +delete-exitfunc= 1 [EditorWindow] width= 80 |