diff options
Diffstat (limited to 'numpy/random/common.pyx')
-rw-r--r-- | numpy/random/common.pyx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/random/common.pyx b/numpy/random/common.pyx index 2fa854807..e195195a4 100644 --- a/numpy/random/common.pyx +++ b/numpy/random/common.pyx @@ -666,9 +666,9 @@ cdef object discrete_broadcast_di(void *func, void *state, object size, object l return randoms cdef object discrete_broadcast_iii(void *func, void *state, object size, object lock, - np.ndarray a_arr, object a_name, constraint_type a_constraint, - np.ndarray b_arr, object b_name, constraint_type b_constraint, - np.ndarray c_arr, object c_name, constraint_type c_constraint): + np.ndarray a_arr, object a_name, constraint_type a_constraint, + np.ndarray b_arr, object b_name, constraint_type b_constraint, + np.ndarray c_arr, object c_name, constraint_type c_constraint): cdef np.ndarray randoms cdef int64_t *randoms_data cdef np.broadcast it |