diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-10-06 19:56:32 +0000 |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-10-06 19:56:32 +0000 |
commit | d0052d17b1a067e4aa8a69f5564a4b94e0c00502 (patch) | |
tree | c80b69d55175b2f9d9090262963fc1989358b963 /Modules/unicodedata.c | |
parent | 85ea4bf781203d8b4fd2873791d0a7a26e103652 (diff) | |
download | cpython-git-d0052d17b1a067e4aa8a69f5564a4b94e0c00502.tar.gz |
#1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric,
_PyUnicode_IsLinebreak and _PyUnicode_IsWhitespace.
It now also parses the Unihan.txt for numeric values.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r-- | Modules/unicodedata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 9c9ad5e517..2eb1911299 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -36,7 +36,7 @@ typedef struct change_record { const unsigned char category_changed; const unsigned char decimal_changed; const unsigned char mirrored_changed; - const int numeric_changed; + const double numeric_changed; } change_record; /* data file generated by Tools/unicode/makeunicodedata.py */ |