You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to use the actual variable name sys because mypy requires it, so our only real option here is to make sys an unredefinable built-in, like _coconut names, so that we can guarantee that the name sys will always globally refer to what we want and thus we don't have to redefine it locally.
The text was updated successfully, but these errors were encountered:
We can even only allow import sys as the method of defining sys, only allow it at the top level, and enforce that any references to sys have to come after import sys.
We need to use the actual variable name
sys
becausemypy
requires it, so our only real option here is to makesys
an unredefinable built-in, like_coconut
names, so that we can guarantee that the namesys
will always globally refer to what we want and thus we don't have to redefine it locally.The text was updated successfully, but these errors were encountered: