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