On May 19, 6:14 pm, Arjun Narayanan <[EMAIL PROTECTED]>
wrote:
> For thr program,
> #include "E:\Python25\include\Python.h"
Consider using
#include "E:/Python25/include/Python.h"
or
#include "E:\\Python25\\include\\Python.h"
instead.
Or use
#include
and compile with
-IE:/Python25/include
Arjun Narayanan wrote:
> That AND I didn't use the american spelling Py_Initiali >>> Z <<< e();
Like many words ending in -ize/-ise, initialize is listed with what you
call the "American" spelling in the Oxford English Dictionary.
--
Michael Hoffman
--
http://mail.python.org/mailman/listinfo/p
On May 20, 1:28 am, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Sat, 19 May 2007 13:14:40 -0300, Arjun Narayanan
> <[EMAIL PROTECTED]> escribió:
>
> > For thr program,
> > #include "E:\Python25\include\Python.h"
> > #include
>
> Configure your environment so using:
>
> #include
>
> works (
En Sat, 19 May 2007 13:14:40 -0300, Arjun Narayanan
<[EMAIL PROTECTED]> escribió:
> For thr program,
> #include "E:\Python25\include\Python.h"
> #include
Configure your environment so using:
#include
works (you may need to add E:\Python25\include to some list of searched
directories, maybe
For thr program,
#include "E:\Python25\include\Python.h"
#include
int main(int argc, char* argv[]){
Py_Initialise();
Py_Finalise();
return 0;
}
I get the errors,
main.cpp:7: `Py_Initialise' undeclared (first use this function)
main.cpp:7: (Each undeclared identifier is reported only on