Message115544
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. |
|
Date |
User |
Action |
Args |
2010-09-04 00:01:49 | kevinpt | set | recipients:
+ kevinpt |
2010-09-04 00:01:49 | kevinpt | set | messageid: <1283558509.74.0.494754089018.issue9770@psf.upfronthosting.co.za> |
2010-09-04 00:01:48 | kevinpt | link | issue9770 messages |
2010-09-04 00:01:48 | kevinpt | create | |
|