[issue9770] curses.isblank function doesn't match ctype.h

2010-09-03 Thread Kevin Thibedeau
New submission from Kevin Thibedeau : 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 lik

[issue9770] curses.isblank function doesn't match ctype.h

2010-09-03 Thread Ned Deily
Changes by Ned Deily : -- nosy: +akuchling ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue9770] curses.isblank function doesn't match ctype.h

2010-09-03 Thread Ned Deily
Changes by Ned Deily : -- versions: +Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http