After this code runs, what is the value of `__suppress_context__` on the caught exception, and is its `__context__` set?
try:
try:
1 / 0
except ZeroDivisionError:
raise ValueError("clean") from None
except ValueError as v:
...