Hey Greg, guys<br><br>Two things;<br><br>First, can we get array setting in the next version of Pyrex?&nbsp; It doesn&#39;t seem like a very difficult feature to implement, either with:<br><br>cdef int c_array[5] = (1,1,2,3,5)<br>
# or<br>cdef int c_array[5]<br>c_array = (1,1,2,3,5)<br><br>This would allow us to get rid of an obnoxious .c file in our source:<br>&nbsp; <a href="http://www.pysoy.org/browser/trunk/pysoy/src/textures/_tables4YUV.c?rev=703">http://www.pysoy.org/browser/trunk/pysoy/src/textures/_tables4YUV.c?rev=703</a><br>

<br><br>Second, there&#39;s a bug that&#39;s apparently been known for awhile where certain math functions are unaware of the type of self, and thus, self must be cast.&nbsp; It&#39;s just an annoyance, but it&#39;d be nice to be rid of it.&nbsp; Example;<br>
&nbsp; <a href="http://www.pysoy.org/browser/trunk/pysoy/src/_datatypes/BodyPosition.pxi?rev=1137">http://www.pysoy.org/browser/trunk/pysoy/src/_datatypes/BodyPosition.pxi?rev=1137</a><br><br><br>It&#39;d be easier to report and track these sort of things if there was a Trac site for Pyrex, or some other bug tracker at the very least.<br>