File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -291,9 +291,10 @@ def multiaxis_indices(draw, shapes):
291
291
return tuple (res )
292
292
293
293
294
- def two_mutual_arrays (dtype_objects = dtype_objects ):
294
+ def two_mutual_arrays (dtype_objects = dtype_objects ,
295
+ two_shapes = two_mutually_broadcastable_shapes ):
295
296
mutual_dtypes = shared (mutually_promotable_dtypes (dtype_objects ))
296
- mutual_shapes = shared (two_mutually_broadcastable_shapes )
297
+ mutual_shapes = shared (two_shapes )
297
298
arrays1 = xps .arrays (
298
299
dtype = mutual_dtypes .map (lambda pair : pair [0 ]),
299
300
shape = mutual_shapes .map (lambda pair : pair [0 ]),
@@ -304,7 +305,6 @@ def two_mutual_arrays(dtype_objects=dtype_objects):
304
305
)
305
306
return arrays1 , arrays2
306
307
307
-
308
308
@composite
309
309
def kwargs (draw , ** kw ):
310
310
"""
You can’t perform that action at this time.
0 commit comments