> def plus_minus(fakearg=0):
>     .....
>
>
Note, rather than using a fake argument to prevent public access, you can 
also simply start the function name with a double underscore:

def __plus_minus():

Anthony

-- 



Reply via email to