From 175cecfa87887bfa140c7ab0ce52f4b5160096c7 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 10 Apr 2014 11:39:36 +0100 Subject: [PATCH] py: Make form-feed character a space (following C isspace). Eg, in CPython stdlib, email/header.py has a form-feed character. --- py/unicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,