Re: Implementing my own Python interpreter

2008-10-14 Thread Scott David Daniels
Stefan Behnel wrote: You should take a look at Cython, which translates Python code to C. Also take a gander at RPython in the PyPy project. It is a restricted subset of Python on top of which they implement Python. --Scott David Daniels [EMAIL PROTECTED] -- http://mail.python.org/mailman/list

Re: Implementing my own Python interpreter

2008-10-14 Thread Stefan Behnel
Ognjen Bezanov wrote: > Also, any pro's out there willing to chime on the feasibility of > implementing python to run directly on the hardware (without an > underlying OS)? I don't expect 100% compatibility, but would the basics > (branching, looping, arithmatic) be feasible? You should take a loo

Re: Implementing my own Python interpreter

2008-10-13 Thread Terry Reedy
Ognjen Bezanov wrote: The is a page on the python wiki about CPython intermals. -- http://mail.python.org/mailman/listinfo/python-list

Re: Implementing my own Python interpreter

2008-10-13 Thread Robert Kern
Ognjen Bezanov wrote: Hello All, I am a third year computer science student and I'm the process of selection for my final year project. One option that was thought up was the idea of implement my own version of the python interpreter (I'm referring to CPython here). Either as a process running

Re: Implementing my own Python interpreter

2008-10-13 Thread Matt Nordhoff
Ognjen Bezanov wrote: > Hello All, > > I am a third year computer science student and I'm the process of > selection for my final year project. > > One option that was thought up was the idea of implement my own version > of the python interpreter (I'm referring to CPython here). Either as a > pr

Re: Implementing my own Python interpreter

2008-10-13 Thread Ognjen Bezanov
Grant Edwards wrote: On 2008-10-13, Ognjen Bezanov <[EMAIL PROTECTED]> wrote: I am a third year computer science student and I'm the process of selection for my final year project. One option that was thought up was the idea of implement my own version of the python interpreter (I'm referring

Re: Implementing my own Python interpreter

2008-10-13 Thread Grant Edwards
On 2008-10-13, Ognjen Bezanov <[EMAIL PROTECTED]> wrote: > I am a third year computer science student and I'm the process of > selection for my final year project. > > One option that was thought up was the idea of implement my > own version of the python interpreter (I'm referring to > CPython he

Implementing my own Python interpreter

2008-10-13 Thread Ognjen Bezanov
Hello All, I am a third year computer science student and I'm the process of selection for my final year project. One option that was thought up was the idea of implement my own version of the python interpreter (I'm referring to CPython here). Either as a process running on another OS or as a p