Kaydet (Commit) 38fd069a authored tarafından Kurt B. Kaiser's avatar Kurt B. Kaiser

There was an error on exit if no sys.exitfunc was defined. Issue 1647.

Backport r60227
üst 0b45f36c
......@@ -3,6 +3,9 @@ What's New in IDLE 1.2.2c1?
*Release date: XX-FEB-2008*
- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
(backport r60227)
- Could not open files in .idlerc directory if latter was hidden on Windows.
Issue 1743, Issue 1862. (backport r60225, r60745)
......
......@@ -205,7 +205,10 @@ def exit():
"""
if no_exitfunc:
del sys.exitfunc
try:
del sys.exitfunc
except AttributeError:
pass
sys.exit(0)
class MyRPCServer(rpc.RPCServer):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment