Aiksaurus interface?

2005-07-29 Thread James Richards
Major big apologies if this has been covered to death before. It's been a few years since I played with these two technologies. I seem to recall a python wrapper over aiksaurus. I can't find it now. (Or maybe it's just my own stupidity. That's been known to happen :-/). Is there a project/wrap

Re: To thread or not to thread

2005-07-29 Thread James Richards
On 2005-07-28, Sidd <[EMAIL PROTECTED]> wrote: > Hello, > I was recently reading an article on threading in python and I > came across Global Interpreter Lock,now as a novince in python I was > cusrious about > > 1.Is writing a threaded code in python going to perform well than a > normal pyt

Re: A replacement for lambda

2005-07-29 Thread James Richards
On 2005-07-30, Scott David Daniels <[EMAIL PROTECTED]> wrote: > Christopher Subich wrote: >> g = >> g(1) == 1 >> >> Basically, I'd rewrite the Python grammar such that: >> lambda_form ::= "<" expression "with" parameter_list ">" >> >> Biggest change is that parameter_list is no longer optional,