[Python-Dev] Re: [Bug #121013] Bug in <stringobject>.join(<unicodestring>)

Fredrik Lundh fredrik@effbot.org
Tue, 28 Nov 2000 10:54:31 +0100


Jeremy wrote:

> test_unicodedata is failing for me on Linux.  Fredrik, you made a
> change on Nov. 3 that changed test/output/test_unicodedata but not
> test/test_unicodedata.pu.  Did you verify that the test suite worked
> then?

I added 38,000 missing characters to the unicode database.
that didn't change the test, only the test output...

the november 3 checkin included the following files:

    Lib/test/output/test_unicodedata
    Modules/unicodedata_db.h
    Objects/unicodetype_db.h
    Tools/unicode/makeunicodedata.py

:::

hmm.  looks like the makefile dependencies haven't been
updated (is this done by hand on Unix???)

in Modules/Makefile.pre.in

    unicodedatabase.o: unicodedatabase.c unicodedatabase.h

should be

    unicodedatabase.o: unicodedatabase.c unicodedatabase.h unicodedata_db.h

and in Objects/Makefile.in

    unicodectype.o: unicodectype.c

should be:

    unicodectype.o: unicodectype.c unicodectype_db.h
    
</F>