(entry_point)
| 467 | |
| 468 | |
| 469 | def _bootstrap(entry_point): |
| 470 | # type: (str) -> PexInfo |
| 471 | pex_info = PexInfo.from_pex(entry_point) # type: PexInfo |
| 472 | pex_info.update(PexInfo.from_env()) |
| 473 | pex_warnings.configure_warnings(ENV, pex_info=pex_info) |
| 474 | return pex_info |
| 475 | |
| 476 | |
| 477 | @attr.s(frozen=True) |
no test coverage detected