[Python-Dev] bsddb3 imported
Tim Peters
tim.one@comcast.net
Sat, 23 Nov 2002 12:59:05 -0500
[Barry]
> Note that test_ucn.py crashes Python.
[MvL]
> Oops. Fixed.
Not here. In a debug build, it reliably crashes in the bowels of strcpy.
My guess:
strcpy(buffer, hangul_syllables[L][0]);
can't always work because the hangul_syllables array contains NULL pointers
in some entries instead of empty strings. It blows up for me when L is
pointing at the
{ 0, "YI", "S" },
entry. I'm proceeding on "a fix" to see whether s/0/""/g cures it.