]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix for issue #10406: enable Rstrip extension on OSX
authorRonald Oussoren <ronaldoussoren@mac.com>
Tue, 7 Dec 2010 16:13:17 +0000 (16:13 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Tue, 7 Dec 2010 16:13:17 +0000 (16:13 +0000)
Without this patch the Rstrip extension for IDLE is not enabled on OSX,
while it is enabled on other platforms.

Patch by Ned Deily.

Mac/IDLE/config-extensions.def
Misc/NEWS

index c17f068e2d65a62c550e06f65229430046eb315c..1791b9c0ae757a3e824b4bbfafe7f62b5749ef4a 100644 (file)
@@ -86,3 +86,8 @@ bgcolor=LightGray
 fgcolor=Black
 [CodeContext_bindings]
 toggle-code-context=
+
+[RstripExtension]
+enable=1
+enable_shell=0
+enable_editor=1
index 8058a2ff4b329d6ab48777bc9cdb7f2c30d405ae..0481ddc567624772a8cb901853af0c672c7a3386 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Library
 
 - Issue #10107: Warn about unsaved files in IDLE on OSX.
 
+- Issue #10406: Enable Rstrip IDLE extension on OSX (just like on other
+  platforms).
+
 - Issue #10478: Reentrant calls inside buffered IO objects (for example by
   way of a signal handler) now raise a RuntimeError instead of freezing the
   current process.