1. 596357d Merge comment fix from 3.5 by Martin Panter · 8 years ago
  2. 39b1025 Fix typo and move comment to appropriate condition by Martin Panter · 8 years ago
  3. cfb1961 py_getrandom(): use char* instead of void* for the destination by Victor Stinner · 8 years ago
  4. 9ff9cbd Merge 3.5 (os.urandom) by Victor Stinner · 8 years ago
  5. dddf484 os.urandom() doesn't block on Linux anymore by Victor Stinner · 8 years ago
  6. 7258176 Merge 3.5 (os.urandom) by Victor Stinner · 8 years ago
  7. 9d24271 Fix os.urandom() on Solaris 11.3 by Victor Stinner · 8 years ago
  8. fad85aa Issue #25558: Use compile-time asserts. by Serhiy Storchaka · 9 years ago
  9. 861f067 Merge 3.4 (os.urandom) by Victor Stinner · 9 years ago
  10. 78cc2e8 Issue #25003: os.urandom() doesn't use getentropy() on Solaris because by Victor Stinner · 9 years ago
  11. bae2d62 Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom() by Victor Stinner · 9 years ago
  12. 61d5aab py_getrandom(): getrandom() *can* return EINTR by Victor Stinner · 9 years ago
  13. 81c6df5 (Merge 3.4) Issue #22585: os.urandom() now releases the GIL when the by Victor Stinner · 9 years ago
  14. 9aa1331 Issue #22585: os.urandom() now releases the GIL when the getentropy() is used by Victor Stinner · 9 years ago
  15. 79b74ae Issue #22181: os.urandom() now releases the GIL when the getrandom() by Victor Stinner · 9 years ago
  16. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  17. c9382eb Issue #23707: On UNIX, os.urandom() now calls the Python signal handler when by Victor Stinner · 9 years ago
  18. c7cd12d Issue #22181: Fix dev_urandom_noraise(), try calling py_getrandom() before by Victor Stinner · 9 years ago
  19. 9eb57c5 Issue #22181: The availability of the getrandom() is now checked in configure, by Victor Stinner · 9 years ago
  20. 59f7fb2 Issue #22181: On Linux, os.urandom() now uses the new getrandom() syscall if by Victor Stinner · 9 years ago
  21. a555cfc Issue #23694: Enhance _Py_open(), it now raises exceptions by Victor Stinner · 9 years ago
  22. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  23. fe02e39 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  24. 4d6a3d6 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  25. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  26. 83000a4 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  27. b8ac3e1 Issue21393 Use CryptReleaseContext to release Crypt handle on Windows by Tim Golden · 10 years ago
  28. d50c3f3 Issue #21393: random.c: on Windows, close the hCryptProv handle at exit by Victor Stinner · 10 years ago
  29. e472aea Issue #21207: Detect when the os.urandom cached fd has been closed or replaced, and open it anew. by Antoine Pitrou · 10 years ago
  30. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  31. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  32. 0c08346 Fix compiler warning in win32_urandom(): explicit cast to DWORD in by Victor Stinner · 11 years ago
  33. af1edb7 merge with 3.3 by Georg Brandl · 11 years ago
  34. c6a2c9b Closes #15213: update comment for _PyOS_URandom by Georg Brandl · 11 years ago
  35. 4879a96 Issue #18756: os.urandom() now uses a lazily-opened persistent file descriptor, so as to avoid using many file descriptors when run in parallel from multiple threads. by Antoine Pitrou · 11 years ago
  36. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  37. 95b2146 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  38. ec34ab5 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  39. 3f50bf6 Drop support for Windows 2000; allow any XP API (but not Vista+). by Martin v. Löwis · 11 years ago
  40. 380c55c Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
  41. c9f54cf enable hash randomization by default by Benjamin Peterson · 12 years ago
  42. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 12 years ago
  43. 12897d7 Fix typo in conditional. by Georg Brandl · 12 years ago
  44. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago