def foo(x, y='foo assert'):
    AssertionError = '12'
    __debug__ = x
    assert x, y

assert 1, "one"
foo(1)
assert 0, "zero"
foo(0)
