1. 178f0b6 Issue #24620: Random.setstate() now validates the value of state last element. by Serhiy Storchaka · 9 years ago
  2. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  3. 978c6ab Issue 13355: Make random.triangular degrade gracefully when low == high. by Raymond Hettinger · 10 years ago
  4. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  5. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  6. 29f8cb6 Issue #19588: Merge with 3.3 by Zachary Ware · 11 years ago
  7. a6edea5 Issue #19588: Fixed tests in test_random that were silently skipped most by Zachary Ware · 11 years ago
  8. ba5da94 #17789: merge with 3.3. by Ezio Melotti · 11 years ago
  9. 3e4a98b #17789: test_random now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  10. 44e33f3 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 11 years ago
  11. b4fd468 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 11 years ago
  12. 4e7d3ab Fix whitespaces by Andrew Svetlov · 11 years ago
  13. eff6444 Fix whitespaces by Andrew Svetlov · 11 years ago
  14. 7300011 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 11 years ago
  15. a2dfc35 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 11 years ago
  16. e3e1c17 #17492: Additional tests for random module. by R David Murray · 11 years ago
  17. 06e5e73 Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 12 years ago
  18. ac99576 Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 12 years ago
  19. 6c22b1d Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 12 years ago
  20. 1b901ba Issue #17149: merge fix from 3.3. by Mark Dickinson · 12 years ago
  21. 6427358 Issue #17149: merge fix from 3.2. by Mark Dickinson · 12 years ago
  22. be5f919 Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*math.pi]. by Mark Dickinson · 12 years ago
  23. 5e39433 Issue #15837: add some tests for random.shuffle(). Patch by Alessandro Moura. by Antoine Pitrou · 12 years ago
  24. 95aeae0 In random's test_seedargs: Make sure to include at least one seed object with a negative hash. by Mark Dickinson · 12 years ago
  25. 3fcf002 Update whatsnew. Salt the random number seed. by Raymond Hettinger · 14 years ago
  26. 7f7561e Remove invalid test (it was supposed to fail on 64-bit machines.). by Raymond Hettinger · 14 years ago
  27. dc4872e Fix corner case for Random.choice() and add tests. by Raymond Hettinger · 14 years ago
  28. 0515661 Issues #7889, #9025 and #9379: Improvements to the random module. by Raymond Hettinger · 14 years ago
  29. f763a72 Document which part of the random module module are guaranteed. by Raymond Hettinger · 14 years ago
  30. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  31. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  32. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  33. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  34. 2d0c256 Inline coefficients in gamma(). Add reflection formula. Add comments. by Raymond Hettinger · 16 years ago
  35. aa7633a Merged revisions 65258,65292,65299,65308-65309,65315,65326 via svnmerge from by Mark Dickinson · 16 years ago
  36. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  37. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  38. fe337bf Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from by Christian Heimes · 16 years ago
  39. 1acde19 Take Tim's advice and have random.sample() support only sequences and sets. by Raymond Hettinger · 17 years ago
  40. 28de64f Remove defunct parts of the random module by Raymond Hettinger · 17 years ago
  41. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  42. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  43. af554a0 First merge from the trunk straight into the py3k branch. I'm not by Guido van Rossum · 17 years ago
  44. e61fd5b Patch by Christian Heimes to change self.assert_(x == y) into by Guido van Rossum · 17 years ago
  45. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  46. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  47. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  48. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  49. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  50. 89da5d7 Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. by Guido van Rossum · 18 years ago
  51. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  52. ffdb8bb Use floor division operator. by Raymond Hettinger · 20 years ago
  53. 23f1241 SF #1027105: HardwareRandom should be renamed OSRandom by Raymond Hettinger · 20 years ago
  54. c1c43ca Fulfill Martin's request to use try/except rather than a "look before by Raymond Hettinger · 20 years ago
  55. b871763 SF bug #1022010: Import random fails by Raymond Hettinger · 20 years ago
  56. 356a459 Teach the random module about os.urandom(). by Raymond Hettinger · 20 years ago
  57. 5833587 Add some tests for corner cases. by Raymond Hettinger · 20 years ago
  58. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  59. 2f726e9 SF bug #812202: randint is always even by Raymond Hettinger · 21 years ago
  60. 66d09f1 SF bug #801342: Bug (documentation or real, your choice) in random.sample. by Raymond Hettinger · 21 years ago
  61. 3081d59 SF bug #778964: bad seed in python 2.3 random by Raymond Hettinger · 21 years ago
  62. 5f078ff SF bug #759889: Pickling of Random is broken by Raymond Hettinger · 21 years ago
  63. 27922ee Apply the simplified test_support boilerplate. by Raymond Hettinger · 21 years ago
  64. 320a1b0 Simplify ref count test. by Raymond Hettinger · 21 years ago
  65. 785d0a3 SF bug #690083: test_random fails sometimes by Raymond Hettinger · 22 years ago
  66. 105b084 Add refcount test. by Raymond Hettinger · 22 years ago
  67. 7b0cf76 * Migrate sample distribution test from random.py to test_random.py. by Raymond Hettinger · 22 years ago
  68. 3dd990c Move the statistical tests for four distributions into the unittest suite. by Raymond Hettinger · 22 years ago
  69. 15ec373 Add a test case. by Raymond Hettinger · 22 years ago
  70. 8ec7881 Test an edge case for sample(). by Raymond Hettinger · 22 years ago
  71. 40f6217 SF patch 658251: Install a C implementation of the Mersenne Twister as the by Raymond Hettinger · 22 years ago
  72. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  73. 46c04e1 random.gauss() uses a piece of hidden state used by nothing else, by Tim Peters · 22 years ago