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
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
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:
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
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
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