diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-10 11:39:36 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-10 11:39:36 +0100 |
commit | 175cecfa87887bfa140c7ab0ce52f4b5160096c7 (patch) | |
tree | 0f23289b76161502373cf6afcc791aadf0c37418 /py | |
parent | a91f41407bae9d50213ad9dcae5c21fc7551750f (diff) | |
download | micropython-175cecfa87887bfa140c7ab0ce52f4b5160096c7.tar.gz micropython-175cecfa87887bfa140c7ab0ce52f4b5160096c7.zip |
py: Make form-feed character a space (following C isspace).
Eg, in CPython stdlib, email/header.py has a form-feed character.
Diffstat (limited to 'py')
-rw-r--r-- | py/unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/unicode.c b/py/unicode.c index a20527cb2b..4bdf03387c 100644 --- a/py/unicode.c +++ b/py/unicode.c @@ -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, |