示例#1
0
 def test_concatenate_type_promotion(self):
     result = concatenate([[1], ['b']])
     assert_array_equal(result, np.array([1, 'b'], dtype=object))
示例#2
0
 def test_concatenate_type_promotion(self):
     result = concatenate([[1], ['b']])
     assert_array_equal(result, np.array([1, 'b'], dtype=object))