On May 16, 4:03 pm, Carl Banks <[EMAIL PROTECTED]> wrote:
> On May 16, 6:38 pm, [EMAIL PROTECTED] wrote:
>
>
>
> > Hey there,
>
> > I have a simple question about python print statement. Take the
> > following code snippet for example...
>
> > 1 print "-#- executing: %s" % section,
> > 2 tests[sect
On May 16, 4:02 pm, Hans Nowak <[EMAIL PROTECTED]>
wrote:
> [EMAIL PROTECTED] wrote:
> > Hey there,
>
> > I have a simple question about python print statement. Take the
> > following code snippet for example...
>
> > 1 print "-#- executing: %s" % section,
> > 2 tests[section] = test.testcase(name=
On May 16, 6:38 pm, [EMAIL PROTECTED] wrote:
> Hey there,
>
> I have a simple question about python print statement. Take the
> following code snippet for example...
>
> 1 print "-#- executing: %s" % section,
> 2 tests[section] = test.testcase(name=config.get(section,'name'))
> 3 tests[section].run
[EMAIL PROTECTED] wrote:
Hey there,
I have a simple question about python print statement. Take the
following code snippet for example...
1 print "-#- executing: %s" % section,
2 tests[section] = test.testcase(name=config.get(section,'name'))
3 tests[section].runTest()
4 printStatus(tests[secti
Hey there,
I have a simple question about python print statement. Take the
following code snippet for example...
1 print "-#- executing: %s" % section,
2 tests[section] = test.testcase(name=config.get(section,'name'))
3 tests[section].runTest()
4 printStatus(tests[section])
Now the problem is th