Example #1
0
 def test_stack_type_promotion(self):
     result = stack([1, 'b'])
     assert_array_equal(result, np.array([1, 'b'], dtype=object))
Example #2
0
 def test_stack_type_promotion(self):
     result = stack([1, 'b'])
     assert_array_equal(result, np.array([1, 'b'], dtype=object))