Re: Further adventures in the land of 64-bit linux

Guido van Rossum <[email protected]> Sat, 14 Sep 2002 13:06:50 -0400
Newsgroups gmane.comp.python.snake-farm.user
Message-ID <[email protected]>
> On Fri, Sep 13, 2002 at 08:42:03PM -0400, Guido van Rossum wrote:
> > But Python is compiled with -DNDEBUG (unless you request a debug build
> > with "configure --with-pydebug") so the assert() is not executed.
> 
> Maybe the farm should compile with pydebugging?

Ideally, there should be separate compilation runs with and without
debugging.  Some things only break in a non-debug run, some bugs are
only detected (or detected earlier or diagnosed clearlier) in a
debugging run.

It might be worth it to try more variations too, e.g. the 2-byte and
4-byte Unicode options.

--Guido van Rossum (home page: http://www.python.org/~guido/)