MCPcopy Index your code
hub / github.com/python/cpython / read_row

Method read_row

Lib/test/test_free_threading/test_csv.py:20–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18 output_rows = []
19
20 def read_row():
21 for row in reader:
22 self.assertEqual(len(row), 3)
23 output_rows.append(",".join(row))
24
25 run_concurrently(worker_func=read_row, nthreads=NTHREADS)
26 self.assertSetEqual(set(input_rows), set(output_rows))

Callers

nothing calls this directly

Calls 3

assertEqualMethod · 0.45
appendMethod · 0.45
joinMethod · 0.45

Tested by

no test coverage detected