Re: infinite loop executed in emacs

2006-06-10 Thread BartlebyScrivener
Try Ctrl + Break http://tinyurl.com/qc8np -- http://mail.python.org/mailman/listinfo/python-list

Re: infinite loop

2005-09-07 Thread Carl Friedrich Bolz
Hi! LOPEZ GARCIA DE LOMANA, ADRIAN wrote: > Hi all, > > I have a question with some code I'm writting: > > > def main(): > > if option == 1: > > function_a() > > elif option == 2: > > function_b() > > else: > > raise 'option has to be either 1 or 2' >

Re: infinite loop

2005-09-06 Thread Mike Meyer
"LOPEZ GARCIA DE LOMANA, ADRIAN" <[EMAIL PROTECTED]> writes: > Hi all, > > I have a question with some code I'm writting: > > > def main(): > if option == 1: > function_a() > elif option == 2: > function_b() > else: > raise 'option has to be either 1 or 2' >

Re: infinite loop

2005-09-06 Thread James
Devan L wrote: > LOPEZ GARCIA DE LOMANA, ADRIAN wrote: > > Hi all, > > > > I have a question with some code I'm writting: > > > > > > def main(): > > > > if option == 1: > > > > function_a() > > > > elif option == 2: > > > > function_b() > > > > else: > > > > rai

Re: infinite loop

2005-09-06 Thread Scott David Daniels
LOPEZ GARCIA DE LOMANA, ADRIAN wrote: > Hi all, > > I have a question with some code I'm writting: > > > def main(): > if option == 1: > function_a() > elif option == 2: > function_b() > else: > raise 'option has to be either 1 or 2' > if iteration == Tru

Re: infinite loop

2005-09-06 Thread Devan L
LOPEZ GARCIA DE LOMANA, ADRIAN wrote: > Hi all, > > I have a question with some code I'm writting: > > > def main(): > > if option == 1: > > function_a() > > elif option == 2: > > function_b() > > else: > > raise 'option has to be either 1 or 2' > > if itera