py: Make form-feed character a space (following C isspace).

Eg, in CPython stdlib, email/header.py has a form-feed character.
travis
Damien George 2014-04-10 11:39:36 +01:00
parent a91f41407b
commit 175cecfa87
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
// table of attributes for ascii characters
STATIC const uint8_t attr[] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, AT_SP, AT_SP, AT_SP, 0, AT_SP, 0, 0,
0, AT_SP, AT_SP, AT_SP, AT_SP, AT_SP, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
AT_SP, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR,