env 725 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # No startup script.
  2. unset PYTHONSTARTUP
  3. # Do not require 4-digit years.
  4. unset PYTHONY2K
  5. # No optimization. We want assert statements.
  6. unset PYTHONOPTIMIZE
  7. # Disable Python debugging.
  8. unset PYTHONDEBUG
  9. # Do not write bytecode files.
  10. export PYTHONDONTWRITEBYTECODE=1
  11. # Disable inspect.
  12. unset PYTHONINSPECT
  13. # Use default I/O encoding.
  14. unset PYTHONIOENCODING
  15. # Default user-site.
  16. unset PYTHONNOUSERSITE
  17. # Use buffered I/O.
  18. unset PYTHONUNBUFFERED
  19. # Be non-verbose.
  20. unset PYTHONVERBOSE
  21. # Default warnings.
  22. unset PYTHONWARNINGS
  23. # Disable hash randomization to get stable dict collisions
  24. # and thus stable benchmark results.
  25. export PYTHONHASHSEED=0
  26. # Enforce CPU affinity to the last host CPU.
  27. export AWLSIM_AFFINITY=-1