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
Simplify implementation of vectorized date operations.
1) We don't need to handle separately the scalar case -- tolist()
returns a scalar when called on a 0d-array, as returned by
np.vectorize() when called on a scalar.
2) We don't need to handle separately the empty case, as long as the
output type ("O") is passed to np.vectorize.
0 commit comments