Re: Python Concurrency Workshop, Jan 14-15, 2010

2010-01-02 Thread Mike Howard
Hi Dave, Chicago in January? How about moving it to Denver - it's a nice town and I live close by. Mike David Beazley wrote: Python Concurrency Workshop, v2.0 January 14-15, 2010 Chicago, Illinois http://www.dabe

Re: Do deep inheritance trees degrade efficiency?

2009-03-28 Thread Mike Howard
On Mar 19, 7:24 am, Anthra Norell wrote: > Bruno Desthuilliers wrote: > > Chris Rebert a écrit : > >> On Wed, Mar 18, 2009 at 6:09 AM, Anthra Norell > >> wrote: > >>> Would anyone who knows the inner workings volunteer to clarify > >>> whether or > >>> not every additional derivation of a class h

Re: newbie question: if var1 == var2:

2008-11-29 Thread Mike Howard
item = "tree\n" != 'tree' [EMAIL PROTECTED] wrote: Hi All, I dont understand why the following code never finds "tree". I could not find the answer in the Python tutorials. Here is the code, test43.in, and runtime: #!/usr/bin/python fname = open("test43.in") var = 'tree' for item in fname:

Re: Help needed on COM issue

2006-04-27 Thread Mike Howard
Thanks for the suggestions. I tried the tuple to list to tuple method with no success Its not a .Value issue either. In order to keep going I've left this code as vb for the moment -- http://mail.python.org/mailman/listinfo/python-list

Re: Help needed on COM issue

2006-04-11 Thread Mike Howard
Should read ... I'm doing some conversion of vb code to python code and I have a problem with a COM object Specifically in VB I can do Set oR = oA.Action debug.print oR.Item(1,2) [returns say "1"] oR.Item(1,2)="4" debug.print oR [returns "4"] oR.Update [saves the record with the new item] In P

Help needed on COM issue

2006-04-11 Thread Mike Howard
I'm doing some conversion of vb code to python code and I have a problem with a COM object Specifically in VB I can do Set oR = oA.Action debug.print oR.Item(1,2) [returns say "1"] oR.Item(1,2)="4" debug.print oR [returns "4"] In Python I need to do .. oR=oA.Action() print oR.Item(1,2)[0] [re