def main_impl(args, mstdout, mstderr, local_main_func=main_func,
              exitfun=sys.exit):
    """Call the main_func and handle possible exceptions"""
    try:
        exitfun(not local_main_func(args, mstdout, mstderr))