Re: new extension generator for C++

2010-05-06 Thread Rouslan Korneychuk
I have the code up at http://github.com/Rouslan/PyExpose now. Any comments are welcome. -- http://mail.python.org/mailman/listinfo/python-list

Picking a license (was Re: new extension generator for C++)

2010-05-06 Thread Aahz
In article 4be05d75.7030...@msn.com, Rouslan Korneychuk rousl...@msn.com wrote: The only question I have now is what about licensing? Is that something I need to worry about? Should I go with LGPL, MIT, or something else? Which license you use depends partly on your political philosophy.

Re: Picking a license (was Re: new extension generator for C++)

2010-05-06 Thread Rouslan Korneychuk
On 05/06/2010 04:22 PM, Aahz wrote: In article4be05d75.7030...@msn.com, Rouslan Korneychukrousl...@msn.com wrote: The only question I have now is what about licensing? Is that something I need to worry about? Should I go with LGPL, MIT, or something else? Which license you use depends

Re: new extension generator for C++

2010-05-04 Thread Stefan Behnel
Rouslan Korneychuk, 03.05.2010 22:44: The only issue is it will not use keyword arguments for overloaded functions (I don't know if that can even be done reliably *and* efficiently. I would need to give it more thought). You should look at the argument unpacking code that Cython generates. It

Re: new extension generator for C++

2010-05-04 Thread Samuel Williams
Dear Rouslan, It looks interesting. I say go for it. You will learn something and might make some improvements on existing ideas. I recommend putting the code on www.github.com Kind regards, Samuel On 4/05/2010, at 8:44 AM, Rouslan Korneychuk wrote: Hi, I'm new here. I'm working on a

Re: new extension generator for C++

2010-05-04 Thread Rouslan Korneychuk
On 05/04/2010 03:06 AM, Samuel Williams wrote: Dear Rouslan, It looks interesting. I say go for it. You will learn something and might make some improvements on existing ideas. I recommend putting the code on www.github.com Kind regards, Samuel Thanks for the suggestion. I think I'll do

new extension generator for C++

2010-05-03 Thread Rouslan Korneychuk
Hi, I'm new here. I'm working on a program that exposes C++ declarations to Python and I was wondering if there is any interest in it. It's a hobby project. I was originally using Boost.Python on another project but found a couple of things I didn't like. Eg: you can't really have private

Re: new extension generator for C++

2010-05-03 Thread Stefan Behnel
Rouslan Korneychuk, 03.05.2010 22:44: So I looked for other solutions and noticed that Py++ (which simply generates Boost.Python code for you) was based on a seperate program called GCCXML. I figured I could use GCCXML and generate code however I wanted. So I did. My program generates