aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_random.py
Commit message (Expand)AuthorAge
* gh-130285: Fix handling of zero or empty counts in random.sample() (gh-130291)Raymond Hettinger2025-02-21
* gh-123968: Fix lower bound for `python -m random --float` (#123971)Anders Kaseorg2024-09-12
* gh-118131: Command-line interface for the `random` module (#118132)Hugo van Kemenade2024-05-05
* Add extra tests for `random.binomialvariate` (gh-112325)Tian Gao2023-11-23
* GH-100805: Support numpy.array() in random.choice(). (GH-100830)Raymond Hettinger2023-01-08
* GH-100234: Set a default value for random.expovariate() (GH-100235)Raymond Hettinger2022-12-15
* GH-81620: Add random.binomialvariate() (GH-94719)Raymond Hettinger2022-07-13
* gh-86388 Remove deprecated behaviors in randrange() (#92677)Raymond Hettinger2022-05-11
* bpo-46737: Add default arguments to random.gauss and normalvariate (GH-31360)Zackery Spytz2022-02-15
* bpo-46624: Defer to 3.12: "Remove deprecated support for non-integer values" ...Miro HronĨok2022-02-03
* bpo-40280: Add requires_fork test helper (GH-30622)Christian Heimes2022-01-16
* Move error test to the function that needs it. Improve error message. (GH-30...Raymond Hettinger2021-12-09
* bpo-42222: Improve tests for invalid argument types in randrange() (GH-29021)Serhiy Storchaka2021-10-19
* bpo-42222: Remove deprecated support for non-integer values (GH-28983)Raymond Hettinger2021-10-16
* bpo-44260: Do not read system entropy without need in Random() (GH-26455)Serhiy Storchaka2021-05-31
* bpo-40465: Remove random module features deprecated in 3.9 (GH-25874)Raymond Hettinger2021-05-04
* bpo-44018: random.seed() no longer mutates its inputs (GH-25856)Raymond Hettinger2021-05-03
* bpo-37319: Improve documentation, code and tests of randrange. (GH-19112)Serhiy Storchaka2021-01-25
* bpo-42944 Fix Random.sample when counts is not None (GH-24235)jonanifranco2021-01-18
* bpo-42772: Step argument ignored when stop is None. (GH-24018)Raymond Hettinger2021-01-02
* bpo-42222: Modernize integer test/conversion in randrange() (#23064)Raymond Hettinger2020-12-28
* bpo-42008: Fix internal _random.Random() seeding for the one argument case (G...AMIR2020-12-21
* bpo-42470: Do not warn on sequences which are also sets in random.sample() (G...masklinn2020-12-18
* bpo-41773: Raise exception for non-finite weights in random.choices(). (GH-2...Ram Rachum2020-09-28
* bpo-41052: Opt out serialization/deserialization for _random.Random (GH-21002)Dong-hee Na2020-06-21
* bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)Raymond Hettinger2020-05-08
* bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)Raymond Hettinger2020-05-02
* Simplify choice()'s interaction with the private _randbelow() method (GH-19831)Raymond Hettinger2020-05-01
* bpo-40325: Deprecate set object support in random.sample() (GH-19591)Raymond Hettinger2020-04-19
* bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (...Serhiy Storchaka2020-04-17
* bpo-40282: Allow random.getrandbits(0) (GH-19539)Antoine Pitrou2020-04-17
* bpo-40286: Add randbytes() method to random.Random (GH-19527)Victor Stinner2020-04-17
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-31
* bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897)Victor Stinner2020-03-10
* bpo-38881: choices() raises ValueError when all weights are zero (GH-17362)Raymond Hettinger2019-11-23
* bpo-38120: Fix DeprecationWarning in test_random for invalid type of argument...Xtreak2019-09-12
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-21
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-06
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)Serhiy Storchaka2019-03-05
* bpo-30561: Sync-up expovariate() and gammavariate code (GH-1934)leodema2018-12-23
* bpo-24567: Random subnormal.diff (#7954)Raymond Hettinger2018-06-27
* bpo-33144: Fix choosing random.Random._randbelow implementation. (GH-6563)Serhiy Storchaka2018-05-08
* bpo-33144: random.Random and subclasses: split _randbelow implementation (GH-...Wolfgang Maier2018-04-17
* bpo-33203: Ensure random.choice always raises IndexError on empty sequence (G...Wolfgang Maier2018-04-05
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-14
* bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad...Oren Milman2017-09-28
* bpo-31482: Missing bytes support for random.seed() version 1 (#3614)Raymond Hettinger2017-09-17
* bpo-31160: Fix test_random for zombie process (#3045)Victor Stinner2017-08-09
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-27
* bpo-30308: Code coverage for argument in random.shuffle (#1504)csabella2017-05-11