(
pex, # type: str
*additional_args, # type: str
**additional_env # type: Any
)
| 66 | |
| 67 | |
| 68 | def read_additional_sys_path( |
| 69 | pex, # type: str |
| 70 | *additional_args, # type: str |
| 71 | **additional_env # type: Any |
| 72 | ): |
| 73 | # type: (...) -> List[str] |
| 74 | |
| 75 | isolated_sys_path = execute_sys_path_dump_pex(pex) |
| 76 | return list( |
| 77 | execute_sys_path_dump_pex(pex, *additional_args, **additional_env) - isolated_sys_path |
| 78 | ) |
| 79 | |
| 80 | |
| 81 | def assert_inherited( |
no test coverage detected