In article <[EMAIL PROTECTED]>,
Kenneth McDonald  <[EMAIL PROTECTED]> wrote:
>
>I recently had need to write the following code:
>
>     def compileOuter(self):
>         if False: yield None
>         else: return

What's wrong with

    def foo():
        if False: yield None
-- 
Aahz ([EMAIL PROTECTED])           <*>         http://www.pythoncraft.com/

"Don't listen to schmucks on USENET when making legal decisions.  Hire
yourself a competent schmuck."  --USENET schmuck (aka Robert Kern)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to