[Tutor] what is the difference

Alan Gauld alan.gauld at btinternet.com
Thu Dec 13 19:52:22 CET 2007


"johnf" <jfabiani at yolo.com> wrote

> if self._inFlush:
>       return
> self._inFlush = True
> ....
>
> AND
>
> if not self._inFlush:
>      ...
>     self._inFlush = True
> else:
>     return
>
> I can not see the difference but the second one acts differently in 
> my code.

The first has no else clause so the second assignment always happens.

Alan G. 




More information about the Tutor mailing list