mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

This PR copies over the `gourgeist` crate at commit `e64c17a263dac6933702dc8d155425c053fe885a` with no modifications. It won't pass CI, but modifications will intentionally be confined to later PRs.
12 lines
163 B
Python
12 lines
163 B
Python
import sys
|
|
|
|
|
|
def main():
|
|
print(sys.executable)
|
|
print(sys.version)
|
|
print(sys.base_prefix)
|
|
print(sys.prefix)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|