embed python

Erik Max Francis max at alcyone.com
Sun Mar 14 04:03:08 EST 2004


Marc Schellens wrote:

> ok, but why everybody writes #include "Python.h" instead of
> #include <Python.h> ? The latter form is the corrcet one for
> header files wich are not part of the actual project.

It's a minor point.  The <...> notation is for system headers, the "..."
notation is for non-system headers, but will fall back to searching
system headers as well.

If it works at all -- and you haven't chosen deliberately conflicting
filenames -- then it doesn't matter which one you use.

-- 
 __ Erik Max Francis && max at alcyone.com && http://www.alcyone.com/max/
/  \ San Jose, CA, USA && 37 20 N 121 53 W && &tSftDotIotE
\__/ Sometimes we're blinded by the light / If we'd only use our eyes
    -- Oleta Adams



More information about the Python-list mailing list