Re: C++ Modules for python: How to?

2007-07-27 Thread Robert Dailey
Okay I've actually got it compiling now, however it is saying it can't find "stdio.h" (No such file or directory). This means it doesn't know where the include directories are. How do I specify include directories? -- http://mail.python.org/mailman/listinfo/python-list

Re: C++ Modules for python: How to?

2007-07-27 Thread Robert Dailey
On Jul 6, 7:39 pm, John Machin <[EMAIL PROTECTED]> wrote: > On Jul 7, 9:26 am,RobertDailey<[EMAIL PROTECTED]> wrote: > > > > > On Jul 6, 3:06 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > > >RobertDaileyschrieb: > > > > > Hi, > > > > > I'm interested in making a C++ library of mine usable t

Re: C++ Modules for python: How to?

2007-07-07 Thread Diez B. Roggisch
> > How do I install SIP? I can't seem to do this. I've downloaded the > package and read the README file, but I don't see a way of installing > it on windows. I ran the configure.py file but then it generates > makefiles to run which can't be run on windows. I also attempted to > download QT but

Re: C++ Modules for python: How to?

2007-07-06 Thread John Machin
On Jul 7, 9:26 am, Robert Dailey <[EMAIL PROTECTED]> wrote: > On Jul 6, 3:06 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > > > > Robert Dailey schrieb: > > > > Hi, > > > > I'm interested in making a C++ library of mine usable through python. > > > Python does a similar thing with Expat (the

Re: C++ Modules for python: How to?

2007-07-06 Thread Robert Dailey
On Jul 6, 3:06 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Robert Dailey schrieb: > > > Hi, > > > I'm interested in making a C++ library of mine usable through python. > > Python does a similar thing with Expat (the non-validating XML > > parser). I notice that with Expat, python is importi

Re: C++ Modules for python: How to?

2007-07-06 Thread Diez B. Roggisch
Robert Dailey schrieb: > Hi, > > I'm interested in making a C++ library of mine usable through python. > Python does a similar thing with Expat (the non-validating XML > parser). I notice that with Expat, python is importing a C++ header > file into a PY file and the interface is available to pyth

C++ Modules for python: How to?

2007-07-06 Thread Robert Dailey
Hi, I'm interested in making a C++ library of mine usable through python. Python does a similar thing with Expat (the non-validating XML parser). I notice that with Expat, python is importing a C++ header file into a PY file and the interface is available to python. I've read through the python do