[Python-checkins] python/dist/src/Lib/idlelib FormatParagraph.py, 1.6, 1.7 NEWS.txt, 1.41, 1.42

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Mon Oct 25 01:45:44 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30465/Lib/idlelib
Modified Files:
	FormatParagraph.py NEWS.txt 
Log Message:
format_paragraph_event(): Patch 961387 introduced a bug here, causing
the indentation of a comment block to be ignored when reformatting the
block, leading to overly long reformatted lines (too wide by an amount
equal to the indentation width). Looks like a typo in the original
patch, a 1-character repair.
Index: FormatParagraph.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/FormatParagraph.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- FormatParagraph.py	4 Jun 2004 06:31:08 -0000	1.6
+++ FormatParagraph.py	24 Oct 2004 23:45:41 -0000	1.7
@@ -47,7 +47,7 @@
 lines = map(lambda st, l=len(comment_header): st[l:], lines)
 data = "\n".join(lines)
 # Reformat to maxformatwidth chars or a 20 char width, whichever is greater.
- format_width = max(maxformatwidth, len(comment_header), 20)
+ format_width = max(maxformatwidth - len(comment_header), 20)
 newdata = reformat_paragraph(data, format_width)
 # re-split and re-insert the comment header.
 newdata = newdata.split("\n")
Index: NEWS.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/NEWS.txt,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- NEWS.txt	15 Oct 2004 08:07:21 -0000	1.41
+++ NEWS.txt	24 Oct 2004 23:45:42 -0000	1.42
@@ -1,3 +1,14 @@
+What's New in IDLE 1.1b2?
+=========================
+
+*Release date: DD-MMM-2004*
+
+- When paragraph reformat width was made configurable, a bug was
+ introduced that caused reformatting of comment blocks to ignore how
+ far the block was indented, effectively adding the indentation width
+ to the reformat width. This has been repaired, and the reformat
+ width is again a bound on the total width of reformatted lines.
+
 What's New in IDLE 1.1b1?
 =========================
 
@@ -52,7 +63,7 @@
 - If nulls somehow got into the strings in recent-files.lst
 EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
 
-- If the normal background is changed via Configure/Highlighting, it will update 
+- If the normal background is changed via Configure/Highlighting, it will update
 immediately, thanks to the previously mentioned patch by Nigel Rowe.
 
 - Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
@@ -73,7 +84,7 @@
 the port or connect to the subprocess. Clean up error handling during
 connection initiation phase. This is an update of Python Patch 778323.
 
-- Print correct exception even if source file changed since shell was 
+- Print correct exception even if source file changed since shell was
 restarted. IDLEfork Patch 869012 Noam Raphael
 
 - Keybindings with the Shift modifier now work correctly. So do bindings which
@@ -81,7 +92,7 @@
 Python Bug 775353, IDLEfork Bugs 755647, 761557
 
 - After an exception, run.py was not setting the exception vector. Noam
- Raphael suggested correcting this so pdb's postmortem pm() would work. 
+ Raphael suggested correcting this so pdb's postmortem pm() would work.
 IDLEfork Patch 844675
 
 - IDLE now does not fail to save the file anymore if the Tk buffer is not a
@@ -179,7 +190,7 @@
 *Release date: 02-Jun-2003*
 
 - The current working directory of the execution environment (and shell
- following completion of execution) is now that of the module being run. 
+ following completion of execution) is now that of the module being run.
 
 - Added the delete-exitfunc option to config-main.def. (This option is not
 included in the Options dialog.) Setting this to True (the default) will
@@ -247,7 +258,7 @@
 - Improved I/O response by tweaking the wait parameter in various
 calls to signal.signal().
 
-- Implemented a threaded subprocess which allows interrupting a pass 
+- Implemented a threaded subprocess which allows interrupting a pass
 loop in user code using the 'interrupt' extension. User code runs
 in MainThread, while the RPCServer is handled by SockThread. This is
 necessary because Windows doesn't support signals.
@@ -269,11 +280,11 @@
 
 - Exit IDLE cleanly even when doing subprocess I/O
 
-- Handle subprocess interrupt with an RPC message. 
+- Handle subprocess interrupt with an RPC message.
 
 - Restart the subprocess if it terminates itself. (VPython programs do that)
 
-- Support subclassing of exceptions, including in the shell, by moving the 
+- Support subclassing of exceptions, including in the shell, by moving the
 exception formatting to the subprocess.
 
 
@@ -312,15 +323,15 @@
 
 - Removed the File Path from the Additional Help Sources scrolled list.
 
-- Add capability to access Additional Help Sources on the web if the 
+- Add capability to access Additional Help Sources on the web if the
 Help File Path begins with //http or www. (Otherwise local path is
 validated, as before.)
 
 - Additional Help Sources were not being posted on the Help menu in the
- order entered. Implement sorting the list by [HelpFiles] 'option' 
+ order entered. Implement sorting the list by [HelpFiles] 'option'
 number.
 
-- Add Browse button to New Help Source dialog. Arrange to start in 
+- Add Browse button to New Help Source dialog. Arrange to start in
 Python/Doc if platform is Windows, otherwise start in current directory.
 
 - Put the Additional Help Sources directly on the Help menu instead of in
@@ -348,7 +359,7 @@
 accessing python.org.
 
 - Make the methods for finding the Python help docs more robust, and make
- them work in the installed configuration, also. 
+ them work in the installed configuration, also.
 
 - On the Save Before Run dialog, make the OK button the default. One
 less mouse action!
@@ -385,7 +396,7 @@
 What's New in IDLEfork 0.9 Alpha 1?
 ===================================
 
-*Release date: 31-Dec-2002* 
+*Release date: 31-Dec-2002*
 
 - First release of major new functionality. For further details refer to
 Idle-dev and/or the Sourceforge CVS.


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /