It's now Ticket #227 (http://trac.cython.org/cython_trac/ticket/227).
The quick fix is to not use bool, but use bint instead (of course). I had accidentally typed bool instead of bint in one place in my code, and fixing that got my code working. Still, it's a bug, just more of a corner case. --Hoyt On Sun, Mar 1, 2009 at 9:51 AM, Hoyt Koepke <[email protected]> wrote: > Hello, > > I'm using the latest pull from cython-dev, 1800:e8b5a8e5da3d, with > python 2.5.4, and some of my code calls PyBool_CheckExact. However, > this doesn't seem to be defined anywhere. When I compile it with gcc, > it warns that the symbol is defined implicitly, and trying to load it > results in an import error saying it's an undefined symbol. > > I'll try to get a specific example together where it happens and file > a bug report, but it seems like a simple-to-fix version issue here. > > --Hoyt > > > -- > > ++++++++++++++++++++++++++++++++++++++++++++++++ > + Hoyt Koepke > + University of Washington Department of Statistics > + http://www.stat.washington.edu/~hoytak/ > + [email protected] > ++++++++++++++++++++++++++++++++++++++++++ > -- ++++++++++++++++++++++++++++++++++++++++++++++++ + Hoyt Koepke + University of Washington Department of Statistics + http://www.stat.washington.edu/~hoytak/ + [email protected] ++++++++++++++++++++++++++++++++++++++++++ _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
