diff options
| author | Kurt B. Kaiser <kbk@shore.net> | 2003-06-01 01:08:32 +0000 |
|---|---|---|
| committer | Kurt B. Kaiser <kbk@shore.net> | 2003-06-01 01:08:32 +0000 |
| commit | 6c8579ed4d76470d7523026e44299d71fdfc0eb5 (patch) | |
| tree | 51ffd4c42b467a0f73f9bbfe99bceb377420129a | |
| parent | ce5b6d55b8594971f4935724e73393d605d390be (diff) | |
| download | cpython-git-6c8579ed4d76470d7523026e44299d71fdfc0eb5.tar.gz | |
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.
| -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 206c37f14d..4b545d44e9 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 |
