1 2 3 4 5 6 7 8 9
_test_mode = [False] def is_test_mode(): return _test_mode[0] def set_test_mode(): _test_mode[0] = True