Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
38fd069a
Commit
38fd069a
authored
Feb 14, 2008
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
There was an error on exit if no sys.exitfunc was defined. Issue 1647.
Backport r60227
parent
0b45f36c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+3
-0
Lib/idlelib/run.py
Lib/idlelib/run.py
+4
-1
No files found.
Lib/idlelib/NEWS.txt
View file @
38fd069a
...
...
@@ -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)
...
...
Lib/idlelib/run.py
View file @
38fd069a
...
...
@@ -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
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment