Skip to content

Commit 175cecf

Browse files
committed
py: Make form-feed character a space (following C isspace).
Eg, in CPython stdlib, email/header.py has a form-feed character.
1 parent a91f414 commit 175cecf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/unicode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// table of attributes for ascii characters
2323
STATIC const uint8_t attr[] = {
2424
0, 0, 0, 0, 0, 0, 0, 0,
25-
0, AT_SP, AT_SP, AT_SP, 0, AT_SP, 0, 0,
25+
0, AT_SP, AT_SP, AT_SP, AT_SP, AT_SP, 0, 0,
2626
0, 0, 0, 0, 0, 0, 0, 0,
2727
0, 0, 0, 0, 0, 0, 0, 0,
2828
AT_SP, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR,

0 commit comments

Comments
 (0)