diff options
author | Guido van Rossum <guido@python.org> | 2000-03-31 17:26:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-31 17:26:12 (GMT) |
commit | 8a160542405aad66433b962e4f9c2c3d51abe237 (patch) | |
tree | 87d51f6a4433704919fee75ef7a002d0da9225ef /Modules/unicodedatabase.h | |
parent | b95de4f847c04f2b82f75e27e477afd229a189b1 (diff) | |
download | cpython-8a160542405aad66433b962e4f9c2c3d51abe237.zip cpython-8a160542405aad66433b962e4f9c2c3d51abe237.tar.gz cpython-8a160542405aad66433b962e4f9c2c3d51abe237.tar.bz2 |
Marc-Andre Lemburg: The large unicode database table is broken in
pages of 4k entries each. This should fix compiler problems on some
platforms.
Diffstat (limited to 'Modules/unicodedatabase.h')
-rw-r--r-- | Modules/unicodedatabase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedatabase.h b/Modules/unicodedatabase.h index 504d7ad..c89d91e 100644 --- a/Modules/unicodedatabase.h +++ b/Modules/unicodedatabase.h @@ -30,4 +30,4 @@ extern const char *_PyUnicode_BidirectionalNames[21]; /* --- Unicode Database --------------------------------------------------- */ -extern const _PyUnicode_DatabaseRecord _PyUnicode_Database[65536]; +extern const _PyUnicode_DatabaseRecord *_PyUnicode_Database[16]; |