Commit 8ec374cc authored by Ronald Oussoren's avatar Ronald Oussoren

Merged revisions 87119 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87119 | ronald.oussoren | 2010-12-07 16:28:10 +0100 (Tue, 07 Dec 2010) | 2 lines

  Fix for issue #10107: Without this patch IDLE on OSX doesn't warn about unsaved files when quitting.
........
parent d8e4edd5
...@@ -43,7 +43,7 @@ class FileList: ...@@ -43,7 +43,7 @@ class FileList:
def new(self, filename=None): def new(self, filename=None):
return self.EditorWindow(self, filename) return self.EditorWindow(self, filename)
def close_all_callback(self, event): def close_all_callback(self, *args, **kwds):
for edit in self.inversedict.keys(): for edit in self.inversedict.keys():
reply = edit.close() reply = edit.close()
if reply == "cancel": if reply == "cancel":
......
...@@ -97,6 +97,11 @@ def overrideRootMenu(root, flist): ...@@ -97,6 +97,11 @@ def overrideRootMenu(root, flist):
if flist: if flist:
root.bind('<<close-all-windows>>', flist.close_all_callback) root.bind('<<close-all-windows>>', flist.close_all_callback)
# The binding above doesn't reliably work on all versions of Tk
# on MacOSX. Adding command definition below does seem to do the
# right thing for now.
root.createcommand('exit', flist.close_all_callback)
###check if Tk version >= 8.4.14; if so, use hard-coded showprefs binding ###check if Tk version >= 8.4.14; if so, use hard-coded showprefs binding
tkversion = root.tk.eval('info patchlevel') tkversion = root.tk.eval('info patchlevel')
......
...@@ -16,6 +16,8 @@ Core and Builtins ...@@ -16,6 +16,8 @@ Core and Builtins
Library Library
------- -------
- Issue #10107: Warn about unsaved files in IDLE on OSX.
- Issue #10478: Reentrant calls inside buffered IO objects (for example by - Issue #10478: Reentrant calls inside buffered IO objects (for example by
way of a signal handler) now raise a RuntimeError instead of freezing the way of a signal handler) now raise a RuntimeError instead of freezing the
current process. current process.
......
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