[Python-Dev] [ANN] VPython 0.1

skip at pobox.com skip at pobox.com
Fri Oct 24 17:07:20 CEST 2008


    Terry> I have not seen any Windows test yet.  The direct threading is
    Terry> gcc-specific, so there might be degradation with MSVC.

Not if a compiler #ifdef selects between two independent choices:

    #ifdef __GCC__       /* or whatever the right incantation is */
       #include "ceval-threaded.c"
    #else
       #include "ceval-switched.c"
    #endif

and so on...

BTW, as to the implementation of individual VM instructions I don't believe
the Vmgen stuff affects that.  It's just the way the instructions are
assembled.

Skip


More information about the Python-Dev mailing list