From 629082edd6c19553f5b84d68e54b73616c852c35 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 7 Jan 1999 00:12:15 +0000 Subject: Change paragraph width limit to 70 (like Emacs M-Q). --- Tools/idle/FormatParagraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/idle/FormatParagraph.py b/Tools/idle/FormatParagraph.py index 1d0db12..f8827e7 100644 --- a/Tools/idle/FormatParagraph.py +++ b/Tools/idle/FormatParagraph.py @@ -63,7 +63,7 @@ def find_paragraph(text, mark): first = "%d.0" % (lineno+1) return first, last, text.get(first, last) -def reformat_paragraph(data, limit=72): +def reformat_paragraph(data, limit=70): lines = string.split(data, "\n") i = 0 n = len(lines) -- cgit v0.12