summaryrefslogtreecommitdiff
path: root/Lib/random.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* randrange(): Repaired my overly optimistic rewrite, and added commentsTim Peters2003-06-191-1/+13
* randrange(): 2.3 can no longer raises OverflowError on an int() call, soTim Peters2003-06-191-10/+1
* SF bug #753602: random.sample not properly documentedRaymond Hettinger2003-06-131-4/+5
* 'sum' is no longer a good variable name. Use 'total' instead.Raymond Hettinger2003-05-241-3/+3
* * Migrate sample distribution test from random.py to test_random.py.Raymond Hettinger2003-01-171-5/+0
* Much clearer when super() is used.Raymond Hettinger2003-01-071-5/+5
* Move the statistical tests for four distributions into the unittest suite.Raymond Hettinger2003-01-051-3/+0
* Correct long standing bugs in the methods for random distributions.Raymond Hettinger2003-01-041-4/+6
* Remove the random=None nonsense from sample() before it gets set in stone.Raymond Hettinger2003-01-041-18/+11
* SF patch 658251: Install a C implementation of the Mersenne Twister as theRaymond Hettinger2002-12-291-225/+178
* Clarify and speedup test.Raymond Hettinger2002-12-071-2/+3
* Improve comments. Clarify docs.Raymond Hettinger2002-11-181-15/+14
* Improved clarity and thoroughness of docstring.Raymond Hettinger2002-11-131-20/+41
* Docstring typo fixAndrew M. Kuchling2002-11-131-1/+1
* SF patch 629637: Add sample(population, k) method to the random module.Raymond Hettinger2002-11-121-2/+56
* SF bug 594996: OverflowError in random.randrangeTim Peters2002-08-161-4/+17
* Whitespace normalized.Raymond Hettinger2002-05-231-11/+11
* Deprecated Random.cunifvariate clearing bug 506647. Also, added docstrings.Raymond Hettinger2002-05-231-0/+81
* Whitespace normalization.Tim Peters2002-05-231-5/+5
* Use spaces, not tabs for indents.Guido van Rossum2002-05-141-4/+4
* Closes patch 529408 deprecating random.stdgamma().Raymond Hettinger2002-05-141-11/+35
* Closes SF bug 527139. Moved temp variables inside guard.Raymond Hettinger2002-05-131-7/+6
* random.gauss() uses a piece of hidden state used by nothing else,Tim Peters2002-05-051-1/+4
* BDFL agreed with Tim: rehabilitate randint().Neal Norwitz2002-04-131-2/+0
* SF patch 483059: Avoid use of eval() in random.py, from Finn Bock.Tim Peters2001-11-251-6/+5
* Whitespace normalization.Tim Peters2001-02-151-1/+1
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+6