Message 407152 - Python tracker (original) (raw)
Message407152
| Author | iritkatriel |
|---|---|
| Recipients | Stephen.Tu, christian.heimes, dmalcolm, iritkatriel, msmhrt |
| Date | 2021-11-27.15:33:08 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | 1638027188.13.0.106853382183.issue17708@roundup.psfhosted.org |
| In-reply-to |
| Content |
|---|
| This is working now (note that since 3.10 hash randomisation is enabled by default): cpython % export PYTHONHASHSEED=random cpython % ./python.exe -c "import sys; print(sys.flags.hash_randomization)" 1 cpython % export PYTHONHASHSEED=0 cpython % ./python.exe -c "import sys; print(sys.flags.hash_randomization)" 0 cpython % export PYTHONHASHSEED=1 cpython % ./python.exe -c "import sys; print(sys.flags.hash_randomization)" 1 |
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2021-11-27 15:33:08 | iritkatriel | set | recipients: + iritkatriel, christian.heimes, dmalcolm, msmhrt, Stephen.Tu |
| 2021-11-27 15:33:08 | iritkatriel | set | messageid: 1638027188.13.0.106853382183.issue17708@roundup.psfhosted.org |
| 2021-11-27 15:33:08 | iritkatriel | link | issue17708 messages |
| 2021-11-27 15:33:08 | iritkatriel | create |