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
Currently we sometimes use Undefined as a default argument value in stubs. As Undefined will be removed, we should support ... as an alternative. For example, this should be valid (but only in a stub):
def f(x: int = ...) -> None: pass
The text was updated successfully, but these errors were encountered:
Currently we sometimes use
Undefined
as a default argument value in stubs. AsUndefined
will be removed, we should support...
as an alternative. For example, this should be valid (but only in a stub):The text was updated successfully, but these errors were encountered: