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 docs@python, ezio.melotti, gvanrossum, pwuertz, rhettinger, serhiy.storchaka
Date 2012-10-28.02:05:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351389913.51.0.249318387195.issue16239@psf.upfronthosting.co.za>
In-reply-to
Content
Corrected to:

  Yes::

      i = i + 1
      submitted += 1
      x = x*2 - 1
      hypot2 = x*x + y*y
      c = (a+b) * (a-b)

  No::

      i=i+1
      submitted +=1
      x = x * 2 - 1
      hypot2 = x * x + y * y
      c = (a + b) * (a - b)
History
Date User Action Args
2012-10-28 02:05:13gvanrossumsetrecipients: + gvanrossum, rhettinger, ezio.melotti, docs@python, serhiy.storchaka, pwuertz
2012-10-28 02:05:13gvanrossumsetmessageid: <1351389913.51.0.249318387195.issue16239@psf.upfronthosting.co.za>
2012-10-28 02:05:13gvanrossumlinkissue16239 messages
2012-10-28 02:05:13gvanrossumcreate