[Python-checkins] r73001 - in python/trunk: Lib/idlelib/RstripExtension.py Lib/idlelib/config-extensions.def Misc/NEWS

raymond.hettinger python-checkins at python.org
Fri May 29 03:36:26 CEST 2009


Author: raymond.hettinger
Date: Fri May 29 03:36:26 2009
New Revision: 73001

Log:
Issue 5150: Add rstrip() option to IDLE's format menu.

Added:
   python/trunk/Lib/idlelib/RstripExtension.py
      - copied unchanged from r72999, /python/branches/py3k/Lib/idlelib/RstripExtension.py
Modified:
   python/trunk/Lib/idlelib/config-extensions.def
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/idlelib/config-extensions.def
==============================================================================
--- python/trunk/Lib/idlelib/config-extensions.def	(original)
+++ python/trunk/Lib/idlelib/config-extensions.def	Fri May 29 03:36:26 2009
@@ -86,3 +86,9 @@
 fgcolor=Black
 [CodeContext_bindings]
 toggle-code-context=
+
+[RstripExtension]
+enable=1
+enable_shell=0
+enable_editor=1
+

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Fri May 29 03:36:26 2009
@@ -309,6 +309,9 @@
 
 - Issue #6048: Now Distutils uses the tarfile module in archive_util.
 
+- Issue #5150: IDLE's format menu now has an option to strip trailing
+  whitespace.
+
 - Issue #6121: pydoc now ignores leading and trailing spaces in the
   argument to the 'help' function.
 


More information about the Python-checkins mailing list