Chris Jerdonek added the comment: Thanks for weighing in, Greg!
At least for me, this edge case was important because it determines how the canonical advice or recipe for handling multiple paragraphs behaves when the input string has line breaks in between paragraphs. That advice, of course, is to call splitlines(), pass the individual paragraphs to wrap(), and then join on newlines. Here is an example on a paragraph with line breaks between paragraphs: >>> def wrap_paras(text, width=70, **kwargs): ... lines = [line for para in text.splitlines() ... for line in wrap(para, width, **kwargs)] ... return "\n".join(lines) ... >>> text = """\ ... abcd abcd ... ... abcd abcd""" >>> print(wrap_paras(text)) abcd abcd abcd abcd The edge case we're discussing determines whether line breaks between paragraphs are preserved in the result. (With current behavior, they are not.) > If you want it defined, write tests to enforce the status quo and improve the > docs. Given the discussion so far (and in particular, opposition to changing behavior), this is the route I'm hoping we can go. Interesting or not, I think it's good that we at least had this discussion before setting the behavior in stone. :) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue15510> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com