[Python-checkins] r60781 - python/branches/release25-maint/Lib/idlelib/FormatParagraph.py python/branches/release25-maint/Lib/idlelib/NEWS.txt

kurt.kaiser python-checkins at python.org
Thu Feb 14 05:30:55 CET 2008


Author: kurt.kaiser
Date: Thu Feb 14 05:30:55 2008
New Revision: 60781

Modified:
   python/branches/release25-maint/Lib/idlelib/FormatParagraph.py
   python/branches/release25-maint/Lib/idlelib/NEWS.txt
Log:
format_paragraph_event wasn't returning 'break'
Backport r59463


Modified: python/branches/release25-maint/Lib/idlelib/FormatParagraph.py
==============================================================================
--- python/branches/release25-maint/Lib/idlelib/FormatParagraph.py	(original)
+++ python/branches/release25-maint/Lib/idlelib/FormatParagraph.py	Thu Feb 14 05:30:55 2008
@@ -75,6 +75,7 @@
         else:
             text.mark_set("insert", last)
         text.see("insert")
+        return "break"
 
 def find_paragraph(text, mark):
     lineno, col = map(int, mark.split("."))

Modified: python/branches/release25-maint/Lib/idlelib/NEWS.txt
==============================================================================
--- python/branches/release25-maint/Lib/idlelib/NEWS.txt	(original)
+++ python/branches/release25-maint/Lib/idlelib/NEWS.txt	Thu Feb 14 05:30:55 2008
@@ -3,6 +3,8 @@
 
 *Release date: XX-FEB-2008*
 
+- format_paragraph_event wasn't returning a 'break' (backport r59453)
+
 - Corrected some bugs in AutoComplete.  Also, Page Up/Down in ACW implemented;                                                                               
   mouse and cursor selection in ACWindow implemented; double Tab inserts      
   current selection and closes ACW (similar to double-click and Return); scroll                                                                              


More information about the Python-checkins mailing list