1. 23 Jan, 2017 2 commits
  2. 22 Jan, 2017 2 commits
  3. 21 Jan, 2017 1 commit
  4. 20 Jan, 2017 2 commits
  5. 18 Jan, 2017 4 commits
  6. 17 Jan, 2017 5 commits
  7. 16 Jan, 2017 5 commits
  8. 14 Jan, 2017 2 commits
  9. 12 Jan, 2017 1 commit
  10. 13 Jan, 2017 4 commits
  11. 12 Jan, 2017 5 commits
  12. 11 Jan, 2017 3 commits
  13. 10 Jan, 2017 2 commits
  14. 09 Jan, 2017 2 commits
    • Stefan Krah's avatar
      Issue #28701: Revert part of 5bdc8e1a50c8 for the following reasons: · 18e0a97a
      Stefan Krah authored
        - There was no real problem to begin with.
      
        - The hypothetical problem has been fixed by 5bdc8e1a50c8.
      18e0a97a
    • Victor Stinner's avatar
      Issue #29157: Prefer getrandom() over getentropy() · 035ba5da
      Victor Stinner authored
      Copy and then adapt Python/random.c from default branch. Difference between 3.5
      and default branches:
      
      * Python 3.5 only uses getrandom() in non-blocking mode: flags=GRND_NONBLOCK
      * If getrandom() fails with EAGAIN: py_getrandom() immediately fails and
        remembers that getrandom() doesn't work.
      * Python 3.5 has no _PyOS_URandomNonblock() function: _PyOS_URandom()
        works in non-blocking mode on Python 3.5
      035ba5da