From b2dfd73bdce7552e671520a14e4b5a72dc02ce12 Mon Sep 17 00:00:00 2001 From: Fredrik Lundh Date: Sun, 21 Jan 2001 23:31:52 +0000 Subject: Unicode nits: Don't include unicodedatabase.h no more. And make sure to build *all* tables in makeunicodedata.py. --- Modules/unicodedata.c | 1 - Tools/unicode/makeunicodedata.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index d5a1d17..06e5f04 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -12,7 +12,6 @@ ------------------------------------------------------------------------ */ #include "Python.h" -#include "unicodedatabase.h" typedef struct { const unsigned char category; /* index into diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index 33ae7d5..0eeb335 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -51,9 +51,9 @@ def maketables(trace=0): print len(filter(None, unicode.table)), "characters" - # makeunicodename(unicode, trace) + makeunicodename(unicode, trace) makeunicodedata(unicode, trace) - # makeunicodetype(unicode, trace) + makeunicodetype(unicode, trace) # -------------------------------------------------------------------- # unicode character properties -- cgit v0.12