summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2001-01-22 10:38:27 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2001-01-22 10:38:27 (GMT)
commit14970bea8ff40dc8c89af036aeba089fd0bd5680 (patch)
treee8e675e6ea82496c912aba40721821b2c5d8142b
parent3af7cc034c3b42daa7ef7edcf120773c103b22cd (diff)
downloadcpython-14970bea8ff40dc8c89af036aeba089fd0bd5680.zip
cpython-14970bea8ff40dc8c89af036aeba089fd0bd5680.tar.gz
cpython-14970bea8ff40dc8c89af036aeba089fd0bd5680.tar.bz2
unicodedatabase.c is no longer needed thanks to Fredrik's patches.
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index de9c5b9..c32f4aa 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