Re: Python to C converter

2006-06-07 Thread Carl Friedrich Bolz
Chance Ginger wrote: If you are looking for a real python to C, well in this case C++ look for the shedskin compiler. It will take a rather nice subset of Python and generate C++ code from it. In which sense is shedskin a more real python to C/C++ compiler than some of the other mentioned

Re: Python to C converter

2006-06-07 Thread Chance Ginger
Isn't Pyrex for writing extensions to Python? As for PyPy, I didn't scroll down far enough to see the compiler info. It does say it is Python written in Python at the top. Shedskin is nothing but a compiler. On Wed, 07 Jun 2006 19:13:27 +0200, Carl Friedrich Bolz wrote: Chance Ginger wrote:

Python to C converter

2006-06-05 Thread praveenkumar . 117
Hi All, I have an application return in python. I want this to be converted to C. I will be kind enough if somebody suggest is there any tool or compiler to do that. Regards- Praveen Kumar A.S -- http://mail.python.org/mailman/listinfo/python-list

Re: Python to C converter

2006-06-05 Thread Rene Pijlman
[EMAIL PROTECTED]: I have an application return in python. I want this to be converted to C. http://www.python.org/doc/faq/general/#can-python-be-compiled-to-machine-code-c-or-some-other-language -- René Pijlman -- http://mail.python.org/mailman/listinfo/python-list

Re: Python to C converter

2006-06-05 Thread gene tani
Rene Pijlman wrote: [EMAIL PROTECTED]: I have an application return in python. I want this to be converted to C. http://www.python.org/doc/faq/general/#can-python-be-compiled-to-machine-code-c-or-some-other-language

Re: Python to C converter

2006-06-05 Thread Fuzzyman
gene tani wrote: Rene Pijlman wrote: [EMAIL PROTECTED]: I have an application return in python. I want this to be converted to C. http://www.python.org/doc/faq/general/#can-python-be-compiled-to-machine-code-c-or-some-other-language

Re: Python to C converter

2006-06-05 Thread Paul Boddie
gene tani wrote: http://pyfaq.infogami.com/can-python-be-compiled-to-machine-code-c-or-some-other-language shd probably mention Shedskin, boost, ctypes, any others? I've added a comment, which is seemingly all that can be done right now on that page. See also this overview I wrote about Python

Re: Python to C converter

2006-06-05 Thread Chance Ginger
If you are looking for a real python to C, well in this case C++ look for the shedskin compiler. It will take a rather nice subset of Python and generate C++ code from it. It is still rather experimental but I have been using it. Chance G. On Mon, 05 Jun 2006 07:19:39 -0700, Fuzzyman wrote: