Re: [Python-Dev] Eliminating loops

2006-07-29 Thread Josiah Carlson
"Charles Vaughn" <[EMAIL PROTECTED]> wrote: > I'm looking for a way of modifying the compiler to eliminate any loops and > recursion from code. It's for a high speed data processing application. > The alternative is a custom language that is little more than gloryfied > assembly. I'd like to be

Re: [Python-Dev] Eliminating loops

2006-07-28 Thread Brett Cannon
On 7/28/06, Charles Vaughn <[EMAIL PROTECTED]> wrote: I'm looking for a way of modifying the compiler to eliminate any loops and recursion from code.  It's for a high speed data processing application.  The alternative is a custom language that is little more than gloryfied assembly.  I'd like to b

[Python-Dev] Eliminating loops

2006-07-28 Thread Charles Vaughn
I'm looking for a way of modifying the compiler to eliminate any loops and recursion from code.  It's for a high speed data processing application.  The alternative is a custom language that is little more than gloryfied assembly.  I'd like to be able to use everything else around Python, but we ca