From 14970bea8ff40dc8c89af036aeba089fd0bd5680 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Mon, 22 Jan 2001 10:38:27 +0000 Subject: [PATCH] unicodedatabase.c is no longer needed thanks to Fredrik's patches. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index de9c5b943e..c32f4aad8d 100644 --- a/setup.py +++ b/setup.py @@ -141,8 +141,7 @@ class PyBuildExt(build_ext): # access to the builtin codecs and codec registry exts.append( Extension('_codecs', ['_codecsmodule.c']) ) # static Unicode character database - exts.append( Extension('unicodedata', - ['unicodedata.c', 'unicodedatabase.c']) ) + exts.append( Extension('unicodedata', ['unicodedata.c']) ) # Unicode Character Name expansion hash table exts.append( Extension('ucnhash', ['ucnhash.c']) ) # access to ISO C locale support -- 2.50.1