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
Use quit() in this context. break expects to be inside a loop, and return expects to be inside a function.
quit()
break
return