summaryrefslogtreecommitdiff
path: root/Lib/random.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-44018: random.seed() no longer mutates its inputs (GH-25856) (GH-25864)Miss Islington (bot)2021-05-031-2/+1
* Improve the error message for choices(population, 10) (GH-25267) (GH-25477)Miss Islington (bot)2021-04-191-1/+9
* bpo-42944 Fix Random.sample when counts is not None (GH-24235) (GH-24243)Miss Islington (bot)2021-01-181-1/+1
* bpo-42931: randbytes missing from random.__all__ (GH-24219) (GH-24225)Miss Islington (bot)2021-01-151-0/+1
* Improve code organization for the random module (GH-21161) (GH-21163)Miss Islington (bot)2020-07-021-177/+176
* Small clean-ups for the random module (GH-21038) (GH-21065)Miss Islington (bot)2020-06-221-30/+27
* Minor code clean-ups (GH-20838) (GH-20858)Miss Islington (bot)2020-06-131-89/+110
* bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)Raymond Hettinger2020-05-081-5/+29
* bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)Raymond Hettinger2020-05-021-0/+4
* Simplify choice()'s interaction with the private _randbelow() method (GH-19831)Raymond Hettinger2020-05-011-9/+5
* bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)Victor Stinner2020-04-291-0/+6
* bpo-40325: Deprecate set object support in random.sample() (GH-19591)Raymond Hettinger2020-04-191-1/+4
* bpo-40282: Allow random.getrandbits(0) (GH-19539)Antoine Pitrou2020-04-171-2/+4
* bpo-40286: Add randbytes() method to random.Random (GH-19527)Victor Stinner2020-04-171-0/+7
* bpo-38881: choices() raises ValueError when all weights are zero (GH-17362)Raymond Hettinger2019-11-231-1/+3
* bpo-32554: Deprecate hashing arbitrary types in random.seed() (GH-15382)Raymond Hettinger2019-08-221-2/+13
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-1/+1
* bpo-36559: random module: optimize sha512 import (GH-12742)Christian Heimes2019-04-101-1/+8
* Convert range to repeat for choices() (#11889)Raymond Hettinger2019-02-161-3/+3
* Be consistent about the use of from-imports in random module (GH-11837)Raymond Hettinger2019-02-131-4/+4
* bpo-35782: Fix error message in randrange (GH-11620)Kumar Akshay2019-01-211-1/+1
* bpo-30561: Sync-up expovariate() and gammavariate code (GH-1934)leodema2018-12-231-4/+1
* bpo-35513, unittest: TextTestRunner uses time.perf_counter() (GH-11180)Victor Stinner2018-12-171-2/+2
* Remove unnecessary and over-restrictive type check (GH-10905)Raymond Hettinger2018-12-041-2/+0
* Add comments regarding speed/space/entropy trade-offs (GH-10885)Raymond Hettinger2018-12-041-0/+13
* Hoist the float conversion out of the inner loop. (GH-10430)Raymond Hettinger2018-11-091-1/+2
* Minor code refactoring. Compute len() one fewer times on one code path. (GH-...Raymond Hettinger2018-07-041-4/+4
* bpo-24567: Random subnormal.diff (#7954)Raymond Hettinger2018-06-271-1/+3
* bpo-33144: Fix choosing random.Random._randbelow implementation. (GH-6563)Serhiy Storchaka2018-05-081-12/+10
* bpo-33144: random.Random and subclasses: split _randbelow implementation (GH-...Wolfgang Maier2018-04-171-14/+38
* bpo-33203: Ensure random.choice always raises IndexError on empty sequence (G...Wolfgang Maier2018-04-051-0/+2
* bpo-31482: Missing bytes support for random.seed() version 1 (#3614)Raymond Hettinger2017-09-171-2/+3
* random_triangular: sqrt() is more accurate than **0.5 (#3317)Raymond Hettinger2017-09-041-1/+1
* fix comment (#1798)leodema2017-06-041-1/+1
* bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834)Gregory P. Smith2017-05-291-1/+1
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-271-0/+5
* Issue #29055: Suppress upstream exception for random.choice()Raymond Hettinger2016-12-271-1/+1
* Issue 28475: Improve error message for random.sample() with k < 0. (Contribu...Raymond Hettinger2016-11-211-1/+1
* Fix typosRaymond Hettinger2016-11-131-1/+1
* Minor code beautificationRaymond Hettinger2016-11-011-2/+1
* Issue #18844: Make the various ways for specifing weights produce the same re...Raymond Hettinger2016-10-291-3/+4
* Issue #18844: Make the number of selections a keyword-only argument for rando...Raymond Hettinger2016-09-261-1/+1
* Rename weighted_choices() to just choices()Raymond Hettinger2016-09-071-3/+3
* Issue #18844: Add random.weighted_choices()Raymond Hettinger2016-09-061-1/+27
* os.urandom() now blocks on LinuxVictor Stinner2016-09-061-9/+0
* MergeRaymond Hettinger2016-09-041-3/+5
|\
| * Improve docs for random.seed()Raymond Hettinger2016-09-041-3/+5
* | Minor beautification (turn nested-if into a conjunction).Raymond Hettinger2016-08-311-6/+5
* | MergeRaymond Hettinger2016-08-311-0/+7
|\ \ | |/
| * Issue #27706: Fix regression in random.seed(somestr, version=1)Raymond Hettinger2016-08-311-0/+7