From: Ronald Oussoren Date: Tue, 7 Dec 2010 15:28:10 +0000 (+0000) Subject: Fix for issue #10107: Without this patch IDLE on OSX doesn't warn about unsaved files... X-Git-Tag: v3.2b2~182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10e05e17a3e7657ecdc4c7986d35275d76c6d603;p=thirdparty%2FPython%2Fcpython.git Fix for issue #10107: Without this patch IDLE on OSX doesn't warn about unsaved files when quitting. --- diff --git a/Lib/idlelib/FileList.py b/Lib/idlelib/FileList.py index 4c0076d3b6f5..37a337ed9a6d 100644 --- a/Lib/idlelib/FileList.py +++ b/Lib/idlelib/FileList.py @@ -48,7 +48,7 @@ class FileList: def new(self, filename=None): return self.EditorWindow(self, filename) - def close_all_callback(self, event): + def close_all_callback(self, *args, **kwds): for edit in list(self.inversedict): reply = edit.close() if reply == "cancel": diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py index 346f04d1a3b0..f5e30407152f 100644 --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -103,6 +103,11 @@ def overrideRootMenu(root, flist): if flist: root.bind('<>', 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 tkversion = root.tk.eval('info patchlevel') diff --git a/Misc/NEWS b/Misc/NEWS index 8a8a7f1f8639..52784a1d828d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -2,6 +2,18 @@ Python News +++++++++++ +What's New in Python 3.2 Beta 2? +================================ + +*Release date: XXXX-XX-XX* + + +Library +------- + +* Issue #10107: Warn about unsaved files in IDLE on OSX. + + What's New in Python 3.2 Beta 1? ================================