MCPcopy Create free account
hub / github.com/apache/arrow / generate_col_names

Function generate_col_names

python/pyarrow/tests/test_csv.py:47–53  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

45
46
47def generate_col_names():
48 # 'a', 'b'... 'z', then 'aa', 'ab'...
49 letters = string.ascii_lowercase
50 yield from letters
51 for first in letters:
52 for second in letters:
53 yield first + second
54
55
56def split_rows(arr, num_cols, num_rows):

Callers 1

make_random_csvFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected