Re: SImple python print question

2008-05-16 Thread amit . uttam
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

Re: SImple python print question

2008-05-16 Thread amit . uttam
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=

Re: SImple python print question

2008-05-16 Thread Carl Banks
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

Re: SImple python print question

2008-05-16 Thread Hans Nowak
[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

SImple python print question

2008-05-16 Thread amit . uttam
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