Re: [Tutor] Writing a programming language in Python

2010-12-21 Thread David Hutto
On Tue, Dec 21, 2010 at 5:25 AM, Stefan Behnel wrote: > David Hutto, 21.12.2010 11:16: >> >> I understand it's .pyc so it's a compiled file and ready for usage >> as 'anyother'(I might be wrong on this, but sure it's the same as >> converting the original py file straight back to c). > > ".pyc" fi

Re: [Tutor] Writing a programming language in Python

2010-12-21 Thread Stefan Behnel
David Hutto, 21.12.2010 11:16: I understand it's .pyc so it's a compiled file and ready for usage as 'anyother'(I might be wrong on this, but sure it's the same as converting the original py file straight back to c). ".pyc" files have nothing to do with C. They are just compiled byte code, and

Re: [Tutor] Writing a programming language in Python (was: Trying to parse a HUGE(1gb) xml file in python)

2010-12-21 Thread David Hutto
On Tue, Dec 21, 2010 at 5:00 AM, Stefan Behnel wrote: > David Hutto, 21.12.2010 10:46: >> >> On Tue, Dec 21, 2010 at 4:34 AM, Stefan Behnel wrote: >>> >>> David Hutto, 21.12.2010 10:19: If I want to write a programming language, It might not be the best idea to have a labguage neede