Re: [Cython] Add includes to generated header files

2012-08-11 Thread Jeff Copeland
On Sat, Aug 11, 2012 at 10:27 AM, Jeff Copeland wrote: > On Thu, Aug 2, 2012 at 8:43 PM, Stefan Behnel wrote: >> That sounds to me like we should make it a configurable option, something >> like "capi_reexport_cincludes". > > Do mean as a command line option, or something else like a compiler dir

Re: [Cython] Add includes to generated header files

2012-08-11 Thread Jeff Copeland
On Thu, Aug 2, 2012 at 8:43 PM, Stefan Behnel wrote: > That sounds to me like we should make it a configurable option, something > like "capi_reexport_cincludes". Do mean as a command line option, or something else like a compiler directive? ___ cython-

Re: [Cython] Add includes to generated header files

2012-08-02 Thread Jeff Copeland
On Thu, Aug 2, 2012 at 8:43 PM, Stefan Behnel wrote: > Jeff Copeland, 03.08.2012 02:18: >> I'm working on some C++ projects and I'm using cython to embed python >> code. In an effort to make things easy for C++ devs not as familiar >> with cython/python I've made a small change to insert #include

Re: [Cython] Add includes to generated header files

2012-08-02 Thread Stefan Behnel
Jeff Copeland, 03.08.2012 02:18: > I'm working on some C++ projects and I'm using cython to embed python > code. In an effort to make things easy for C++ devs not as familiar > with cython/python I've made a small change to insert #includes in > generated header files the same as is done in genera

[Cython] Add includes to generated header files

2012-08-02 Thread Jeff Copeland
I'm working on some C++ projects and I'm using cython to embed python code. In an effort to make things easy for C++ devs not as familiar with cython/python I've made a small change to insert #includes in generated header files the same as is done in generated c code. This allows one who is using