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 chris.jerdonek
Recipients BreamoreBoy, chris.jerdonek, georg.brandl, gvanrossum, gward, jerith, mark.dickinson, mrabarnett, otto, palfrey, serhiy.storchaka, terry.reedy, tlynn
Date 2012-07-28.02:31:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1343442682.69.0.433118215439.issue1859@psf.upfronthosting.co.za>
In-reply-to
Content
Here is an even simpler failing test case:

>>> from textwrap import wrap
>>> wrap("a\nb", replace_whitespace=False)
['a\nb']

It should return--

['a', 'b']

I will start working on this issue by assembling formal test cases.
History
Date User Action Args
2012-07-28 02:31:22chris.jerdoneksetrecipients: + chris.jerdonek, gvanrossum, gward, georg.brandl, terry.reedy, mark.dickinson, tlynn, palfrey, jerith, mrabarnett, BreamoreBoy, serhiy.storchaka, otto
2012-07-28 02:31:22chris.jerdoneksetmessageid: <1343442682.69.0.433118215439.issue1859@psf.upfronthosting.co.za>
2012-07-28 02:31:22chris.jerdoneklinkissue1859 messages
2012-07-28 02:31:21chris.jerdonekcreate