This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients eric.araujo, flox, pitrou, vstinner
Date 2011-10-21.17:13:46
SpamBayes Score 0.00063954364
Marked as misclassified No
Message-id <1319216984.3382.6.camel@localhost.localdomain>
In-reply-to <1319216627.81.0.706045843467.issue13240@psf.upfronthosting.co.za>
Content
> Extract of my pyconfig.h
> -------------------------------------
> /* Define if you want to use computed gotos in ceval.c. */
> /* #undef USE_COMPUTED_GOTOS */
> -------------------------------------

Ok, now read ceval.c:

#ifdef HAVE_COMPUTED_GOTOS
    #ifndef USE_COMPUTED_GOTOS
    #define USE_COMPUTED_GOTOS 1
    #endif
#else
    #if defined(USE_COMPUTED_GOTOS) && USE_COMPUTED_GOTOS
    #error "Computed gotos are not supported on this compiler."
    #endif
    #undef USE_COMPUTED_GOTOS
    #define USE_COMPUTED_GOTOS 0
#endif
History
Date User Action Args
2011-10-21 17:13:47pitrousetrecipients: + pitrou, vstinner, eric.araujo, flox
2011-10-21 17:13:46pitroulinkissue13240 messages
2011-10-21 17:13:46pitroucreate