pyrex error

Austin Luminais nomail at magicfish.net
Sat Aug 2 05:36:37 EDT 2003


"Bryan" <belred1 at yahoo.com> wrote in message news:<B4IWa.45665$uu5.4763 at sccrnsc04>...
> i'm having trouble building the pyrex demos.  i also can't compile a simple
> hello word example.  i keep getting this '__pyx_f' unknown size error.
> here's the error i'm getting when executing the following script.
> 
> i'm using vc 6.0 on windows xp
> python 2.3
> 

I've been experiencing the same problem since upgrading python to 2.3.
I think the definition of "staticforward" must have been changed.

A temporary fix that seems to work (with MSVC 6.0) is changing this
line in the generated code:

staticforward char *__pyx_f[];

to:

extern char *__pyx_f[];




More information about the Python-list mailing list