> Traceback (most recent call last):
>   File "NeedBrain.py", line 233, in update
>     self._isNearMarker = self._markerDist < self.STAY_MIN_DIST
> IndexError: tuple assignment index out of range
>
> I don't see, where tuples are involved. I only compare two floats.
I've Python
> 2.3.4.

Usually when that kind of thing happens to me I've accidentally used
a comma instead of a period.

Are you sure you don't have

self,_isNearMarker = ...

So Python sees it like

a,b = True

Just a thought,

Alan G.

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to