On Thu, Aug 6, 2009 at 11:01 AM, Tennessee Leeuwenburg <span dir="ltr"><<a href="mailto:tleeuwenburg@gmail.com">tleeuwenburg@gmail.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
this could be nicer than prefixing things with is, and makes things clearer in some cases, e.g.<br><br>def shouldSomethingHappenFlag(self, context):<br>   if 'relevant' in context:<br>     return True<br><br>   return False<br>

<br>vs <br><br>def shouldSomethingHappen?(self, context):<br>  if 'relevant' in context:<br>    return True<br>  return False<br><br>I just think it looks nicer, and is a good hint that a true/false or other kind of flag is likely to come back.<br>

</blockquote><div><br>What about<br><br>hasSomethingHappened(self, context)<br><br>or<br><br>isRelevant(self, context)<br><br>Either way.. I think ? has better uses though. <br><br>Regards,<br>
<br clear="all">Ching-Yun "Xavier" Ho, Technical Artist<br><br>Contact Information<br>Mobile: (+61) 04 3335 4748<br>Skype ID: SpaXe85<br>Email: <a href="mailto:contact@xavierho.com">contact@xavierho.com</a><br>
Website: <a href="http://xavierho.com/">http://xavierho.com/</a><br>
<br></div></div><br>