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
Method signatures are unstable due to a side effect of the implementation of #14. In order to prevent difficult to debug breaks we should force keyword arguments to be used.
This can be supported out of the box in Python 3:
deffun(*, arg1, arg2):
pass
But we'll have to get creative for backcompat with Python 2:
Method signatures are unstable due to a side effect of the implementation of #14. In order to prevent difficult to debug breaks we should force keyword arguments to be used.
This can be supported out of the box in Python 3:
But we'll have to get creative for backcompat with Python 2:
@ferozco
cc @JacekLach, @jamding
The text was updated successfully, but these errors were encountered: