Bill Nalen writes: > I agree that this sounds like a problem particular to Windows that we have > seen before. There isn't a call on output_stream to make and all Java > should act the same in this regard.
Bill, I think I found the problem. I've re-compiled and uploaded ftp://ftp.parc.xerox.com/transient/janssen/plucker-build-1.3pre2.jar. Please give it a try. Basically, in InvokePluckerBuildFromJava.py, I create a wrapper for the output stream using org.python.core.PyFile(), and I wasn't explicitly specifying "binary" in that call. So I changed outputstream = org.python.core.PyFile(os) to outputstream = org.python.core.PyFile(os, "<stream>", "wb") Let's see if that helps. Wouldn't matter on UNIX, but on Windows it probably does. Bill _______________________________________________ plucker-dev mailing list [EMAIL PROTECTED] http://lists.rubberchicken.org/mailman/listinfo/plucker-dev
