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 kevinpt
Recipients kevinpt
Date 2010-09-04.00:01:48
SpamBayes Score 5.256923e-08
Marked as misclassified No
Message-id <1283558509.74.0.494754089018.issue9770@psf.upfronthosting.co.za>
In-reply-to
Content
The isblank() function defined in curses.ascii is incorrect and doesn't match the output from C's isblank() from ctype.h

Incorrect definition:
  def isblank(c): return _ctoi(c) in (8,32)

Should be:
  def isblank(c): return _ctoi(c) in (9,32)

This most likely affects all versions of Python, not just 2.7.
History
Date User Action Args
2010-09-04 00:01:49kevinptsetrecipients: + kevinpt
2010-09-04 00:01:49kevinptsetmessageid: <1283558509.74.0.494754089018.issue9770@psf.upfronthosting.co.za>
2010-09-04 00:01:48kevinptlinkissue9770 messages
2010-09-04 00:01:48kevinptcreate