summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-12-07 16:13:17 +0000
committerRonald Oussoren <ronaldoussoren@mac.com>2010-12-07 16:13:17 +0000
commit517858adb5ee34cf29a257a5b0152a8413a04d91 (patch)
tree1be6f3e82720b91f8a120fb5683c50f8a9f1682e
parent8ec374cc93aed86c270dd3729295748683744d19 (diff)
downloadcpython-git-517858adb5ee34cf29a257a5b0152a8413a04d91.tar.gz
Fix for issue #10406: enable Rstrip extension on OSX
Without this patch the Rstrip extension for IDLE is not enabled on OSX, while it is enabled on other platforms. Patch by Ned Deily.
-rw-r--r--Mac/IDLE/config-extensions.def5
-rw-r--r--Misc/NEWS3
2 files changed, 8 insertions, 0 deletions
diff --git a/Mac/IDLE/config-extensions.def b/Mac/IDLE/config-extensions.def
index c17f068e2d..1791b9c0ae 100644
--- a/Mac/IDLE/config-extensions.def
+++ b/Mac/IDLE/config-extensions.def
@@ -86,3 +86,8 @@ bgcolor=LightGray
fgcolor=Black
[CodeContext_bindings]
toggle-code-context=
+
+[RstripExtension]
+enable=1
+enable_shell=0
+enable_editor=1
diff --git a/Misc/NEWS b/Misc/NEWS
index 8058a2ff4b..0481ddc567 100644
--- 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.