[Python-checkins] python/dist/src/Python compile.c,2.250,2.251

Martin v. Löwis loewis@informatik.hu-berlin.de
07 Aug 2002 16:47:23 +0200


"M.-A. Lemburg" <mal@lemburg.com> writes:

> > + #ifndef Py_USING_UNICODE
> > + 	abort();
> > + #else
> 
> Shouldn't this be a call to Py_FatalError() with a proper
> error message ?

What is the guideline for when to use abort, and when to use
Py_FatalError?

Regards,
Martin