[Pyrex] Re: Pyrex and C++

Mike Rovner mike at nospam.com
Mon Nov 17 23:51:33 CET 2003


Michael JasonSmith wrote:
> On Mon, 2003-11-17 at 17:36, Greg Ewing wrote:

> (foo ? bar : wibble) = blarg;

It's nothing but a shortcut for

if (foo)
  bar = blarg;
else
  wibble = blarg;

There is nothing (and I doubt will ever be) like that in python,
so what are we talking about?

Ah, compiling pyrex output with c++ - AFAIK no c++ compiler is going to drop
c mode out? What is the problem compiling .c modules into c++ project?

Mike








More information about the Pyrex mailing list