MCPcopy Create free account
hub / github.com/numpy/numpy / _create_arrays

Method _create_arrays

numpy/lib/tests/test_recfunctions.py:802–809  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

800
801class TestJoinBy:
802 def _create_arrays(self):
803 a = np.array(list(zip(np.arange(10), np.arange(50, 60),
804 np.arange(100, 110))),
805 dtype=[('a', int), ('b', int), ('c', int)])
806 b = np.array(list(zip(np.arange(5, 15), np.arange(65, 75),
807 np.arange(100, 110))),
808 dtype=[('a', int), ('b', int), ('d', int)])
809 return a, b
810
811 def test_inner_join(self):
812 # Basic test of join_by

Callers 4

test_inner_joinMethod · 0.95
test_joinMethod · 0.95
test_outer_joinMethod · 0.95
test_leftouter_joinMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected