]> granicus.if.org Git - python/commitdiff
unicode database compression, step 1:
authorFredrik Lundh <fredrik@pythonware.com>
Sun, 24 Sep 2000 21:45:34 +0000 (21:45 +0000)
committerFredrik Lundh <fredrik@pythonware.com>
Sun, 24 Sep 2000 21:45:34 +0000 (21:45 +0000)
- use unidb compression for the unicodedata module.  on Windows,
  the new unidatabase module is 120k, down from nearly 600k.

Modules/unicodedata.c

index 36c6566ad426bd6403ee26c3bfa41f520770ad65..e15ff27183f5613bd7e067ddf70c5e5e6872ca6d 100644 (file)
@@ -13,17 +13,7 @@ Copyright (c) Corporation for National Research Initiatives.
 #include "Python.h"
 #include "unicodedatabase.h"
 
-/* --- Helpers ------------------------------------------------------------ */
-
-static 
-const _PyUnicode_DatabaseRecord *unicode_db(register int i)
-{
-    register int page = i >> 12;
-    
-    if (page < sizeof(_PyUnicode_Database))
-       return &_PyUnicode_Database[page][i & 0x0fff];
-    return &_PyUnicode_Database[0][0];
-}
+#define unicode_db _PyUnicode_Database_GetRecord
 
 /* --- Module API --------------------------------------------------------- */