def main_impl(args, mstdout, mstderr, mainfunc=main_func, exitfun=sys.exit):
    '''The main entry function
    This calls the main_func function and does the exception handling.'''
    try:
        exitfun(not mainfunc(args, mstdout, mstderr))