On Mon, 18 Dec 2006 12:22:23 -0800, Joel B. Mohler <[EMAIL PROTECTED]> wrote:

> I found a small bit of code that gets compiled incorrectly to c.  A sample is:
>
> def unlist():
>         lst = [1,2]
>         lst,m = lst
>
> The translated c-code from this will produce an Unindexable exception.  This
> results from the fact that the variable "lst" is bound to the first element
> of the list (the integer 1) before the second element is extracted
> from "lst".  Hence it tries to unpack from the integer rather than the list.
>
> I couldn't find a formal bugtrack for pyrex.  If there is a better place to
> report this, let me know.

The *only* bugtrack for Pyrex is the SAGE trac server.  Please report your bug
there.  If you don't have an account on it, let me know so i can add you.

By the way, I forked Pyrex and call the forked version sagex, and I'm tracking
bugs and applying patches to the forked version.

William

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/
-~----------~----~----~----~------~----~------~--~---

Reply via email to