summaryrefslogtreecommitdiff
path: root/Lib/random.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #29023: Clarify that ints and longs are always deterministic seeds for...Raymond Hettinger2017-01-061-2/+4
* Issue 13355: Make random.triangular degrade gracefully when low == high.Raymond Hettinger2014-05-251-1/+4
* Issue #21470: Do a better job seeding the random number generatorRaymond Hettinger2014-05-131-1/+3
* Improve the default seeding in random module to use 32 bytes of entropy when ...Raymond Hettinger2014-03-081-1/+1
* Issue 14927: Minor clean-up of function parameters in random().Raymond Hettinger2013-10-051-20/+19
* Improve the docstring of random.shuffle. Inform users not to provide int arg.Senthil Kumaran2013-09-111-0/+2
* Revert changes for #13355 by request from Raymond HettingerAndrew Svetlov2013-04-131-10/+0
* Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-121-0/+10
* Issue #17141: random.vonmisesvariate() no more hangs for large kappas.Serhiy Storchaka2013-02-101-8/+6
* Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*ma...Mark Dickinson2013-02-101-2/+2
* Code simplification suggested by Sven Marnach.Raymond Hettinger2011-06-251-5/+3
* Minor code cleanup.Raymond Hettinger2011-05-181-1/+1
* #11848: replace dead link in random.betavariate comment.Ezio Melotti2011-04-151-1/+1
* Issue 10787: Document the probability density function for random.gammavariate.Raymond Hettinger2011-03-221-0/+6
* Issue 9816: Random.jumpahead(n) didn't work well for small values of n.Raymond Hettinger2010-09-101-0/+13
* Remove outdated XXX comment. Mapping support was removed for 3.x.Raymond Hettinger2010-09-061-9/+0
* Issue 6261: Clarify behavior of random.uniform().Raymond Hettinger2009-06-111-1/+1
* Issue #4869: clarify documentation for random.expovariate.Mark Dickinson2009-01-071-3/+5
* getrandombits is actually getrandbitsBenjamin Peterson2008-07-301-3/+3
* Adopt Nick's suggestion for useful default arguments.Raymond Hettinger2008-03-231-4/+5
* Issue 1681432: Add triangular distribution the random module.Raymond Hettinger2008-03-231-1/+23
* Issue #1727780: Support loading pickles of random.Random objects createdMartin v. Löwis2007-12-031-2/+13
* SF# 1635892: Fix docs for betavariate's input parameters .Raymond Hettinger2007-01-191-1/+1
* Bug #1590891: random.randrange don't return correct value for big numberRaymond Hettinger2006-12-201-1/+1
* shuffle() doscstring: Removed warning about sequence lengthTim Peters2006-06-101-12/+6
* Another crack at bug #1460340: make random.sample(dict)Tim Peters2006-04-011-3/+14
* SF bug #1460340: random.sample can raise KeyErrorRaymond Hettinger2006-03-291-10/+11
* Whitespace normalization (via reindent.py).Tim Peters2005-08-261-1/+1
* Implement random.sample() using sets instead of dicts.Raymond Hettinger2005-08-191-9/+13
* SF patch #1191489: Simplify logic in random.pyRaymond Hettinger2005-04-301-9/+10
* Removed unused line.Raymond Hettinger2005-01-031-1/+0
* Use floor division operator.Raymond Hettinger2004-09-271-2/+2
* SF #1027105: HardwareRandom should be renamed OSRandomRaymond Hettinger2004-09-131-11/+13
* Fulfill Martin's request to use try/except rather than a "look beforeRaymond Hettinger2004-09-051-17/+8
* SF bug #1022010: Import random failsRaymond Hettinger2004-09-031-1/+2
* HardwareRandom: Go back to multiplying by 2**-BPF instead of usingTim Peters2004-08-311-2/+3
* Take advantage of the math library's ldexp for assembling a float byRaymond Hettinger2004-08-311-5/+3
* Teach the random module about os.urandom().Raymond Hettinger2004-08-301-8/+62
* Fix typo in comment.Raymond Hettinger2004-06-071-1/+1
* SF bug #964230: random.choice([]) should return more intelligible exceptionRaymond Hettinger2004-06-051-1/+1
* Reflow long line.Jeremy Hylton2004-02-231-6/+6
* Whitespace normalization.Tim Peters2004-01-181-1/+1
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-1/+1
* Minor fixup. "Random" was listed twice in __all__.Raymond Hettinger2003-10-121-2/+1
* SF bug #812202: randint is always evenRaymond Hettinger2003-10-051-10/+54
* SF bug #801342: Bug (documentation or real, your choice) in random.sample.Raymond Hettinger2003-09-061-0/+4
* Eliminate unnecessary eval() in testsRaymond Hettinger2003-08-301-19/+18
* SF bug #778964: bad seed in python 2.3 randomRaymond Hettinger2003-08-091-0/+3
* Removed deprecated functionsRaymond Hettinger2003-08-051-49/+2
* SF bug #759889: Pickling of Random is brokenRaymond Hettinger2003-06-241-0/+3