Chipmunk warning still present with --release
Posted
by
Kaliber64
on Stack Overflow
See other posts from Stack Overflow
or by Kaliber64
Published on 2013-10-27T09:49:18Z
Indexed on
2013/10/27
9:53 UTC
Read the original article
Hit count: 314
I'm using Python27 on Windows 7 64-bit. I downloaded the source for Chipmunk 6.2.x and compiled Pymunk with --release and -c ming32. Almost zero problems. Lots of path not found cause I'm bad.
All prints seem to have disappeared but I get spammed with EPA iteration warnings. I've seen a couple discussions but no solutions. Possible chipmunk betas to fix the float errors causing the double truths causing the warning. I picked the latest stable version I think.
My program is seriously bogged down with all the prints.
class NullDevice():
def write(self, s):
pass
sys.stdout=NullDevice()
Does not disable the C prints >.<
Any help?
© Stack Overflow or respective owner