Re: how to pass the workspace ?

2008-03-14 Thread Stef Mientki
Thanks, Gary and Dennis, Dennis Lee Bieber wrote: > On Thu, 13 Mar 2008 21:35:42 +0100, Stef Mientki > <[EMAIL PROTECTED]> declaimed the following in comp.lang.python: > > > >> The result of globals and locals in the file is eaxctly the same and >> none of them mentions 'NewVar' and 'beer' >>

Re: how to pass the workspace ?

2008-03-13 Thread Stef Mientki
Gary Herron wrote: > Stef Mientki wrote: >> hello, >> >> I've GUI tree with drag and drop nodes, >> where each nodes contains a code snippet. >> Now I want to run one or more branches in that tree, >> so I enumerate over the nodes and have to run something like this: >> >> execfile ( node1 ) >> exe

Re: how to pass the workspace ?

2008-03-11 Thread Gary Herron
Stef Mientki wrote: > hello, > > I've GUI tree with drag and drop nodes, > where each nodes contains a code snippet. > Now I want to run one or more branches in that tree, > so I enumerate over the nodes and have to run something like this: > > execfile ( node1 ) > execfile ( node2 ) > etc.. > > No

how to pass the workspace ?

2008-03-11 Thread Stef Mientki
hello, I've GUI tree with drag and drop nodes, where each nodes contains a code snippet. Now I want to run one or more branches in that tree, so I enumerate over the nodes and have to run something like this: execfile ( node1 ) execfile ( node2 ) etc.. Now how do I pass the workspace created in