This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark.dickinson
Recipients gvanrossum, mark.dickinson, palfrey
Date 2008-01-17.18:16:28
SpamBayes Score 0.5025218
Marked as misclassified No
Message-id <1200593789.68.0.00908105313308.issue1859@psf.upfronthosting.co.za>
In-reply-to
Content
For what it's worth, I think there is a legitimate complaint here, though it was initially 
unclear to me exactly what that complaint was.  Consider the following:

>>> from textwrap import *
>>> T = TextWrapper(replace_whitespace=False, width=14)
>>> for line in T.wrap('one two\nthree four'): print line
... 
one two
three
four

The surprise (if I understand correctly) is not the first line break, but the second, between 
"three" and "four":  it shouldn't be necessary, since "three four" fits quite happily on a 
line of length 14.
History
Date User Action Args
2008-01-17 18:16:29mark.dickinsonsetspambayes_score: 0.502522 -> 0.5025218
recipients: + mark.dickinson, gvanrossum, palfrey
2008-01-17 18:16:29mark.dickinsonsetspambayes_score: 0.502522 -> 0.502522
messageid: <1200593789.68.0.00908105313308.issue1859@psf.upfronthosting.co.za>
2008-01-17 18:16:28mark.dickinsonlinkissue1859 messages
2008-01-17 18:16:28mark.dickinsoncreate