Message146106
> 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 |
|
Date |
User |
Action |
Args |
2011-10-21 17:13:47 | pitrou | set | recipients:
+ pitrou, vstinner, eric.araujo, flox |
2011-10-21 17:13:46 | pitrou | link | issue13240 messages |
2011-10-21 17:13:46 | pitrou | create | |
|