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

Function unix2dos_one_dir

numpy/distutils/line_endings.py:64–69  ·  view source on GitHub ↗
(modified_files, dir_name, file_names)

Source from the content-addressed store, hash-verified

62 print(file, 'ok')
63
64def unix2dos_one_dir(modified_files, dir_name, file_names):
65 for file in file_names:
66 full_path = os.path.join(dir_name, file)
67 unix2dos(full_path)
68 if file is not None:
69 modified_files.append(file)
70
71def unix2dos_dir(dir_name):
72 modified_files = []

Callers

nothing calls this directly

Calls 2

unix2dosFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected