"leechau" wrote
def step1:
local_var1 = ...
# some other variable definitions for step1
def substep11:
pass
# more substeps
...
global_var1 = ...
# more global var definitions...
if step1.return_success:
step2
Since this is obviously pseudo code I'll assume the
real co
On Mon, Apr 11, 2011 at 08:43:25AM +0800, leechau wrote:
> Hi everybody. I wrote a script to run BVT and it's code structure like this:
What's BVT?
> def step1:
> local_var1 = ...
> # some other variable definitions for step1
> def substep11:
> pass
> def substep12:
>
Hi everybody. I wrote a script to run BVT and it's code structure like this:
def step1:
local_var1 = ...
# some other variable definitions for step1
def substep11:
pass
def substep12:
pass
# more substeps
def step2:
local_var1 = ...
# some other variabl