Re: [jokosher-devel] [PATCH] Fixed: Ticket #169 (No way to delete projects from welcome dialog) [second try]



On 10/24/06, Laszlo Pandy <laszlok2 gmail com> wrote:
 > if pthinfo is not None:

This is equivaluent to:

if pthinfo:

Sorry to be pedantic but:

a = ''
if a is not None:
...     print 'hello'
...
hello
if a:
...     print 'hello'
...




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]