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 skrah
Recipients skrah
Date 2011-10-02.15:39:14
SpamBayes Score 0.0026589853
Marked as misclassified No
Message-id <1317569955.86.0.21646060057.issue13093@psf.upfronthosting.co.za>
In-reply-to
Content
I can't see what this code is supposed to accomplish (see patch):

  while (collend < end) {
      if ((0 < *collend && *collend < 256) ||
          !Py_UNICODE_ISSPACE(*collend) ||
          Py_UNICODE_TODECIMAL(*collend))
          break;
  }


Since 'collend' and 'end' don't change in the loop, it would be
infinite if the 'if' condition evaluated to false. But the 'if'
condition is always true.
History
Date User Action Args
2011-10-02 15:39:15skrahsetrecipients: + skrah
2011-10-02 15:39:15skrahsetmessageid: <1317569955.86.0.21646060057.issue13093@psf.upfronthosting.co.za>
2011-10-02 15:39:15skrahlinkissue13093 messages
2011-10-02 15:39:15skrahcreate