From w1 at zak.co.il Sat Jun 7 13:48:59 2008 From: w1 at zak.co.il (Omer Zak) Date: Sat, 07 Jun 2008 23:48:59 +0300 Subject: [Test Automation] Article about testing tools for Python Message-ID: <1212871739.4558.22.camel@c2.home.zak.co.il> The article http://www.doughellmann.com/articles/CompletelyDifferent-2008-01-testing-tools/index.html is a quick summary of testing tools available to Python developers. -- MS-Windows is the Pal-Kal of the PC world. My own blog is at http://www.zak.co.il/tddpirate/ My opinions, as expressed in this E-mail message, are mine alone. They do not represent the official policy of any organization with which I may be affiliated in any way. WARNING TO SPAMMERS: at http://www.zak.co.il/spamwarning.html From shlomif at iglu.org.il Tue Jun 10 14:06:27 2008 From: shlomif at iglu.org.il (Shlomi Fish) Date: Wed, 11 Jun 2008 00:06:27 +0300 Subject: [Test Automation] [Test Automation Tips] Hello World Message-ID: <200806110006.27617.shlomif@iglu.org.il> On Monday 09 June 2008, Gabor Szabo wrote: > === Python === > > Create a file called hello_world.py with the following content: > > print "Hello World\n" > Actually, Python adds a newline to the end of every print statements, unless it has a trailing ",". So this should be either: {{{{{{{{{ print "Hello World" }}}}}}}}} Or {{{ print "Hello World\n", }}} Regards, Shlomi Fish ----------------------------------------------------------------- Shlomi Fish http://www.shlomifish.org/ The Case for File Swapping - http://xrl.us/bjn7i The bad thing about hardware is that it sometimes works and sometimes doesn't. The good thing about software is that it's consistent: it always does not work, and it always does not work in exactly the same way. From szabgab at gmail.com Tue Jun 10 20:14:55 2008 From: szabgab at gmail.com (Gabor Szabo) Date: Wed, 11 Jun 2008 06:14:55 +0300 Subject: [Test Automation] [Test Automation Tips] Hello World In-Reply-To: <200806110006.27617.shlomif@iglu.org.il> References: <200806110006.27617.shlomif@iglu.org.il> Message-ID: On Wed, Jun 11, 2008 at 12:06 AM, Shlomi Fish wrote: > On Monday 09 June 2008, Gabor Szabo wrote: >> === Python === >> >> Create a file called hello_world.py with the following content: >> >> print "Hello World\n" >> > > Actually, Python adds a newline to the end of every print statements, unless > it has a trailing ",". So this should be either: > > {{{{{{{{{ > print "Hello World" > }}}}}}}}} > > Or > > {{{ > print "Hello World\n", > }}} > You are right. This was a case of broken copy-paste. It real code looks like this: print "Hello World" Gabor