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 gvanrossum
Recipients gvanrossum
Date 2008-05-05.16:40:38
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1210005645.74.0.283923986194.issue2771@psf.upfronthosting.co.za>
In-reply-to
Content
This is a very long line.  I am wondering how it will be wrapped. What
will happen to this exceedingly long line? Will it be wrapped? Will it?
Really? What will happen?

Here's an example:

  def fact(n):
    if n > 1:
      return n * fact(n-1)
    else:
      assert n in (0, 1)
      return 1

What do you think of that?
History
Date User Action Args
2008-07-26 13:49:39georg.brandlsetspambayes_score: 0.817367 -> 0.0
2008-05-05 16:40:47gvanrossumsetspambayes_score: 0.817367 -> 0.817367
recipients: + gvanrossum
2008-05-05 16:40:45gvanrossumsetspambayes_score: 0.817367 -> 0.817367
messageid: <1210005645.74.0.283923986194.issue2771@psf.upfronthosting.co.za>
2008-05-05 16:40:44gvanrossumlinkissue2771 messages
2008-05-05 16:40:42gvanrossumcreate