diff -Bc old/controlflow.rst new/controlflow.rst *** old/controlflow.rst 2009-06-05 17:19:58.000000000 +0200 --- new/controlflow.rst 2009-06-05 21:44:00.000000000 +0200 *************** *** 318,325 **** if retries < 0: raise IOError('refusenik user') print complaint ! This function can be called either like this: ``ask_ok('Do you really want to ! quit?')`` or like this: ``ask_ok('OK to overwrite the file?', 2)``. This example also introduces the :keyword:`in` keyword. This tests whether or not a sequence contains a certain value. --- 318,325 ---- if retries < 0: raise IOError('refusenik user') print complaint ! This function can be called on three ways: with one argument like ``ask_ok('Do you really want to ! quit?')``, with two arguments like this: ``ask_ok('OK to overwrite the file?', 2)`` or even with three arguments like this: ``ask_ok('OK to overwrite the file?', 2, 'Come on, yes or no. It's not that difficult)``. This example also introduces the :keyword:`in` keyword. This tests whether or not a sequence contains a certain value.