Learned something also today! Nice one Anthony! On Thursday, December 6, 2012 11:11:05 PM UTC+1, Anthony wrote: > > > 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 >
--