When running the following code (in Python 2.7.1 on a mac with Mac OS X 10.7)
while True: return False
I get the following error
The return statement only makes sense inside functions:
def foo(): while True: return False