tags:

views:

112

answers:

2

Hello,

it gives me this error:

Traceback (most recent call last):
  File "C:\Users\Public\SoundLog\Code\Código Python\SoundLog\Plugins\NoisePlugin.py", line 113, in onPaint
    dc.DrawLine(valueWI, valueHI, valueWF, valueHF)
  File "C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_gdi.py", line 3177, in DrawLine
    return _gdi_.DC_DrawLine(*args, **kwargs)
OverflowError: cannot convert float infinity to integer

How can I avoid this to happen?

Thanks in advance ;)

+1  A: 

You'll need to post some code to get a definitive answer, but I would guess that one of your float values is unset. As such it could hold any value such as NaN (Not a Number), but in this case it's set to infinity. This can't be cast to integer, hence the error.

It will be being cast to an integer, as ultimately the screen is an integer space (1600 x 1200 pixels for example).

ChrisF
+2  A: 

One of the four values valueWI, valueHI, valueWF, valueHF is set to float infinity. Just truncate it to something reasonable, e.g., for a general and totally local solution, change your DrawLine call to:

ALOT = 1e6
vals = [max(min(x, ALOT), -ALOT) for x in (valueWI, valueHI, valueWF, valueHF)]
dc.DrawLine(*vals)

best, of course, would be to understand which of the values is infinity, and why -- and fix that. But, this preferable course is very application-dependent, and entirely depends on the code leading to the computation of those values, which you give us absolutely no clue about, so it's hard for us to offer very specific help about this preferable option!-)

Alex Martelli
You are the python lord ;)Today it was two for two!!Thanks m8
aF