trying to "make" on the source in
twofishmodule-0.7.tar.gz i got the following error:
[snip]
[ucs_bmt@zoidberg twofishmodule-0.7]$ make
gcc -c -g -I/usr/include/python2.2 twofishmodule.c
twofishmodule.c:484:1: missing terminating " character
[/snip]
i changed the string from:
static char module_doc [] =
"snip....text.\n\
snip....more text.\n\
snip....last text.\n";
to read like:
static char module_doc [] =
"snip....text.\n" \
"snip....more text.\n" \
"snip....last text.\n";
then i had no other problems getting it to compile.
i'm submitting a small patch for what's described above.
twofishmodule.c patch file