(length)
| 100 | |
| 101 | |
| 102 | def random_bytes(length): |
| 103 | # type: (int) -> bytes |
| 104 | return "".join(map(chr, (random.randint(ord("a"), ord("z")) for _ in range(length)))).encode( |
| 105 | "utf-8" |
| 106 | ) |
| 107 | |
| 108 | |
| 109 | def get_dep_dist_names_from_pex(pex_path, match_prefix=""): |
no test coverage detected