python3.py 259 B

12345678910111213
  1. def generate(env):
  2. py_name = "python3"
  3. if env["PLATFORM"] == "win32":
  4. # On Windows, Python 3 executable is usually just "python"
  5. py_name = "python"
  6. env.SetDefault(
  7. PYTHON3=py_name,
  8. )
  9. def exists(env):
  10. return True