1. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 8 years ago
  2. d58a0b6 merge by Raymond Hettinger · 10 years ago
  3. 978c6ab Issue 13355: Make random.triangular degrade gracefully when low == high. by Raymond Hettinger · 10 years ago
  4. 1f54814 Improve readability by Raymond Hettinger · 10 years ago
  5. 23042cd Issue #21470: Do a better job seeding the random number generator by Raymond Hettinger · 10 years ago
  6. f1dc3ee Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start by Christian Heimes · 11 years ago
  7. be74a3d Minor clean-up of function parameters in random(). by Raymond Hettinger · 11 years ago
  8. 8fe47c3 Minor clean-up of function parameters in random(). by Raymond Hettinger · 11 years ago
  9. f77cdbe Issue #19169: Micro refactoring with a micro benefit for brevity and speed. by Raymond Hettinger · 11 years ago
  10. f5ce012 Removing the merge conflict markers. by Senthil Kumaran · 11 years ago
  11. b4055f2 merge from 3.3 by Senthil Kumaran · 11 years ago
  12. f8ce51a Improve the docstring of random.shuffle. Inform users not to provide int arg. by Senthil Kumaran · 11 years ago
  13. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  14. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  15. 44e33f3 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 11 years ago
  16. b4fd468 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 11 years ago
  17. 7300011 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 11 years ago
  18. a2dfc35 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 11 years ago
  19. d9ebf4d #17489: Add explanatory comment that __getstate__ is not called. by R David Murray · 11 years ago
  20. 06e5e73 Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 11 years ago
  21. ac99576 Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 11 years ago
  22. 6c22b1d Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 11 years ago
  23. 1b901ba Issue #17149: merge fix from 3.3. by Mark Dickinson · 11 years ago
  24. 6427358 Issue #17149: merge fix from 3.2. by Mark Dickinson · 11 years ago
  25. be5f919 Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*math.pi]. by Mark Dickinson · 11 years ago
  26. 5e39433 Issue #15837: add some tests for random.shuffle(). Patch by Alessandro Moura. by Antoine Pitrou · 12 years ago
  27. e1b22ed Issue #14926: merge with 3.2 by Sandro Tosi · 12 years ago
  28. 29d09aa Issue #14926: fix docstring highlight by Sandro Tosi · 12 years ago
  29. 4ff29db Merge 3.2 by Brian Curtin · 13 years ago
  30. 675f6b8 Fix #13384. Remove __future__ import in 3.x code. by Brian Curtin · 13 years ago
  31. 12fb2f4 Code simplification suggested by Sven Marnach. by Raymond Hettinger · 13 years ago
  32. 5279fb9 Code simplification suggested by Sven Marnach. by Raymond Hettinger · 13 years ago
  33. 102d874 Sync-up minor code edits with the default branch. by Raymond Hettinger · 13 years ago
  34. 7c5dc91 Avoid codec spelling issues by just using the utf-8 default. by Raymond Hettinger · 13 years ago
  35. f90ba8a Avoid codec spelling issues by just using the utf-8 default. by Raymond Hettinger · 13 years ago
  36. 0dea648 #11848: Merge with 3.2. by Ezio Melotti · 13 years ago
  37. 82b0d5d #11848: Merge with 3.1. by Ezio Melotti · 13 years ago
  38. 20f53f1 #11848: replace dead link in random.betavariate comment. by Ezio Melotti · 13 years ago
  39. 09cbadd Issue 10787: Document the probability density function for random.gammavariate. by Raymond Hettinger · 13 years ago
  40. 27f8709 Issue 10787: Document the probability density function for random.gammavariate. by Raymond Hettinger · 13 years ago
  41. a8e4d6e Issue 10787: Document the probability density function for random.gammavariate. by Raymond Hettinger · 13 years ago
  42. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  43. 57d1a88 Fix imports from collections.abc by Raymond Hettinger · 13 years ago
  44. 3fcf002 Update whatsnew. Salt the random number seed. by Raymond Hettinger · 14 years ago
  45. 63b1767 Improve variable name (don't shadow a builtin). by Raymond Hettinger · 14 years ago
  46. 8ff1099 One more conversion from pow() to **. by Raymond Hettinger · 14 years ago
  47. 183cd1f * Remove dependency on binascii.hexlify by using int.from_bytes(). by Raymond Hettinger · 14 years ago
  48. e4a3e99 In the case where only a user supplied random() method is available, by Raymond Hettinger · 14 years ago
  49. f015b3f Neaten-up comments and warning message. by Raymond Hettinger · 14 years ago
  50. 05a505f Minor refactoring and cleanup. Extend looping randrange() technique to subclasses. by Raymond Hettinger · 14 years ago
  51. c585eec Fix test that depends on a particular implementation of random.choice(). by Raymond Hettinger · 14 years ago
  52. dc4872e Fix corner case for Random.choice() and add tests. by Raymond Hettinger · 14 years ago
  53. c324697 Small clean-ups. by Raymond Hettinger · 14 years ago
  54. 0515661 Issues #7889, #9025 and #9379: Improvements to the random module. by Raymond Hettinger · 14 years ago
  55. 3051cc3 Minor code cleanup by Raymond Hettinger · 14 years ago
  56. f763a72 Document which part of the random module module are guaranteed. by Raymond Hettinger · 14 years ago
  57. 884924a Issue #7435: Remove reference to long in docstring. Thanks flox. by Mark Dickinson · 15 years ago
  58. 5c2db37 Issue #7435: Remove duplicate int/long tests, and other by Mark Dickinson · 15 years ago
  59. be40db0 Issue 6261: Clarify behavior of random.uniform(). by Raymond Hettinger · 15 years ago
  60. 886687d Use ABCs to validate documented restriction to Sets or Sequences. by Raymond Hettinger · 15 years ago
  61. 2f94736 Merged revisions 68378 via svnmerge from by Mark Dickinson · 16 years ago
  62. d18de0e Merged revisions 65259,65263,65296,65307,65321 via svnmerge from by Benjamin Peterson · 16 years ago
  63. 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
  64. 1acde19 Take Tim's advice and have random.sample() support only sequences and sets. by Raymond Hettinger · 17 years ago
  65. 28de64f Remove defunct parts of the random module by Raymond Hettinger · 17 years ago
  66. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  67. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  68. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  69. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  70. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  71. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  72. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  73. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  74. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  75. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  76. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  77. 9e34c04 Whitespace normalization (via reindent.py). by Tim Peters · 19 years ago
  78. 91e27c2 Implement random.sample() using sets instead of dicts. by Raymond Hettinger · 19 years ago
  79. 42406e6 SF patch #1191489: Simplify logic in random.py by Raymond Hettinger · 19 years ago
  80. 362b929 Removed unused line. by Raymond Hettinger · 20 years ago
  81. ffdb8bb Use floor division operator. by Raymond Hettinger · 20 years ago
  82. 23f1241 SF #1027105: HardwareRandom should be renamed OSRandom by Raymond Hettinger · 20 years ago
  83. c1c43ca Fulfill Martin's request to use try/except rather than a "look before by Raymond Hettinger · 20 years ago
  84. bdbdfd7 SF bug #1022010: Import random fails by Raymond Hettinger · 20 years ago
  85. 7c2a85b HardwareRandom: Go back to multiplying by 2**-BPF instead of using by Tim Peters · 20 years ago
  86. 3fa19d7 Take advantage of the math library's ldexp for assembling a float by by Raymond Hettinger · 20 years ago
  87. 356a459 Teach the random module about os.urandom(). by Raymond Hettinger · 20 years ago
  88. 5dae505 Fix typo in comment. by Raymond Hettinger · 20 years ago
  89. 9021c95 SF bug #964230: random.choice([]) should return more intelligible exception by Raymond Hettinger · 20 years ago
  90. 2b55d35 Reflow long line. by Jeremy Hylton · 20 years ago
  91. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  92. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  93. 411c602 Minor fixup. "Random" was listed twice in __all__. by Raymond Hettinger · 21 years ago
  94. 2f726e9 SF bug #812202: randint is always even by Raymond Hettinger · 21 years ago
  95. 66d09f1 SF bug #801342: Bug (documentation or real, your choice) in random.sample. by Raymond Hettinger · 21 years ago
  96. 6229713 Eliminate unnecessary eval() in tests by Raymond Hettinger · 21 years ago
  97. 3081d59 SF bug #778964: bad seed in python 2.3 random by Raymond Hettinger · 21 years ago
  98. f8a52d3 Removed deprecated functions by Raymond Hettinger · 21 years ago
  99. 5f078ff SF bug #759889: Pickling of Random is broken by Raymond Hettinger · 21 years ago
  100. 76ca1d4 randrange(): Repaired my overly optimistic rewrite, and added comments by Tim Peters · 21 years ago