On 05/06/2010 04:22 PM, Aahz wrote:
In article<4be05d75.7030...@msn.com>,
Rouslan Korneychuk 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 polit
In article <4be05d75.7030...@msn.com>,
Rouslan Korneychuk 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.
Unless you have
I have the code up at http://github.com/Rouslan/PyExpose now. Any
comments are welcome.
--
http://mail.python.org/mailman/listinfo/python-list
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 jus
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 progra
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
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 human-read
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 cons