String. The absolute path of the PEX that is executing. This will either be the path of the PEX zip for zipapps or else the path of the PEX loose directory for packed or loose PEXes. N.B.: The path is not the path of the underlying unzipped PEX or else the PEXes installed
(self)
| 403 | |
| 404 | @property |
| 405 | def PEX(self): |
| 406 | # type: () -> Optional[str] |
| 407 | """String. |
| 408 | |
| 409 | The absolute path of the PEX that is executing. This will either be the path of the PEX |
| 410 | zip for zipapps or else the path of the PEX loose directory for packed or loose PEXes. |
| 411 | |
| 412 | N.B.: The path is not the path of the underlying unzipped PEX or else the PEXes installed |
| 413 | venv. |
| 414 | """ |
| 415 | return self._maybe_get_path("PEX") |
| 416 | |
| 417 | @defaulted_property(default=False) |
| 418 | def PEX_ALWAYS_CACHE(self): |
no test coverage detected