summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_random.py
Commit message (Collapse)AuthorAgeFilesLines
* GH-100805: Support numpy.array() in random.choice(). (GH-100830)Raymond Hettinger2023-01-081-0/+15
|
* GH-100234: Set a default value for random.expovariate() (GH-100235)Raymond Hettinger2022-12-151-0/+1
|
* GH-81620: Add random.binomialvariate() (GH-94719)Raymond Hettinger2022-07-131-0/+56
|
* gh-86388 Remove deprecated behaviors in randrange() (#92677)Raymond Hettinger2022-05-121-43/+37
|
* bpo-46737: Add default arguments to random.gauss and normalvariate (GH-31360)Zackery Spytz2022-02-151-0/+4
|
* bpo-46624: Defer to 3.12: "Remove deprecated support for non-integer values" ↵Miro Hrončok2022-02-031-37/+43
| | | | (GH-31098)
* bpo-40280: Add requires_fork test helper (GH-30622)Christian Heimes2022-01-161-1/+1
|
* Move error test to the function that needs it. Improve error message. ↵Raymond Hettinger2021-12-101-4/+0
| | | | (GH-30008)
* bpo-42222: Improve tests for invalid argument types in randrange() (GH-29021)Serhiy Storchaka2021-10-191-20/+11
|
* bpo-42222: Remove deprecated support for non-integer values (GH-28983)Raymond Hettinger2021-10-161-36/+39
|
* bpo-44260: Do not read system entropy without need in Random() (GH-26455)Serhiy Storchaka2021-05-311-17/+19
|
* bpo-40465: Remove random module features deprecated in 3.9 (GH-25874)Raymond Hettinger2021-05-041-13/+3
|
* bpo-44018: random.seed() no longer mutates its inputs (GH-25856)Raymond Hettinger2021-05-031-0/+5
|
* bpo-37319: Improve documentation, code and tests of randrange. (GH-19112)Serhiy Storchaka2021-01-251-3/+16
|
* bpo-42944 Fix Random.sample when counts is not None (GH-24235)jonanifranco2021-01-181-27/+27
|
* bpo-42772: Step argument ignored when stop is None. (GH-24018)Raymond Hettinger2021-01-021-0/+8
|
* bpo-42222: Modernize integer test/conversion in randrange() (#23064)Raymond Hettinger2020-12-281-0/+20
|
* bpo-42008: Fix internal _random.Random() seeding for the one argument case ↵AMIR2020-12-211-0/+9
| | | | (GH-22668)
* bpo-42470: Do not warn on sequences which are also sets in random.sample() ↵masklinn2020-12-191-1/+17
| | | | (GH-23665)
* bpo-41773: Raise exception for non-finite weights in random.choices(). ↵Ram Rachum2020-09-291-0/+16
| | | | (GH-22441)
* bpo-41052: Opt out serialization/deserialization for _random.Random (GH-21002)Dong-hee Na2020-06-211-0/+10
|
* bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)Raymond Hettinger2020-05-081-1/+72
|
* bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)Raymond Hettinger2020-05-021-1/+2
|
* Simplify choice()'s interaction with the private _randbelow() method (GH-19831)Raymond Hettinger2020-05-011-3/+3
|
* bpo-40325: Deprecate set object support in random.sample() (GH-19591)Raymond Hettinger2020-04-191-1/+5
|
* bpo-40286: Makes simpler the relation between randbytes() and getrandbits() ↵Serhiy Storchaka2020-04-171-4/+20
| | | | (GH-19574)
* bpo-40282: Allow random.getrandbits(0) (GH-19539)Antoine Pitrou2020-04-171-40/+29
|
* bpo-40286: Add randbytes() method to random.Random (GH-19527)Victor Stinner2020-04-171-0/+51
| | | | | | | | | | | | Add random.randbytes() function and random.Random.randbytes() method to generate random bytes. Modify secrets.token_bytes() to use SystemRandom.randbytes() rather than calling directly os.urandom(). Rename also genrand_int32() to genrand_uint32(), since it returns an unsigned 32-bit integer, not a signed integer. The _random module is now built with Py_BUILD_CORE_MODULE defined.
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-311-2/+1
| | | | | | | | | Moreover, the following tests now check the child process exit code: * test_os.PtyTests * test_mailbox.test_lock_conflict() * test_tempfile.test_process_awareness() * test_uuid.testIssue8621() * multiprocessing resource tracker tests
* bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897)Victor Stinner2020-03-101-1/+1
| | | | | | Fix the random.Random.seed() method when a bool is passed as the seed. PyObject_Vectorcall() was misused: use PyObject_CallOneArg() instead.
* bpo-38881: choices() raises ValueError when all weights are zero (GH-17362)Raymond Hettinger2019-11-231-0/+5
|
* bpo-38120: Fix DeprecationWarning in test_random for invalid type of ↵Xtreak2019-09-121-3/+9
| | | | arguments to random.seed. (GH-15987)
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-211-1/+1
|
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-061-1/+1
|
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)Serhiy Storchaka2019-03-051-3/+2
|
* bpo-30561: Sync-up expovariate() and gammavariate code (GH-1934)leodema2018-12-241-11/+31
|
* bpo-24567: Random subnormal.diff (#7954)Raymond Hettinger2018-06-271-0/+8
| | | | | Handle subnormal weights for choices()
* bpo-33144: Fix choosing random.Random._randbelow implementation. (GH-6563)Serhiy Storchaka2018-05-081-14/+64
| | | | random() takes precedence over getrandbits() if defined later in the class tree.
* bpo-33144: random.Random and subclasses: split _randbelow implementation ↵Wolfgang Maier2018-04-171-15/+65
| | | | (GH-6291)
* bpo-33203: Ensure random.choice always raises IndexError on empty sequence ↵Wolfgang Maier2018-04-051-1/+4
| | | | | | (GH-6338)
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
| | | | | | | | * Fix multiple typos in code comments * Add spacing in comments (test_logging.py, test_math.py) * Fix spaces at the beginning of comments in test_logging.py
* bpo-31478: Fix an assertion failure in random.seed() in case a seed has a ↵Oren Milman2017-09-281-0/+11
| | | | bad __abs__() method. (#3596)
* bpo-31482: Missing bytes support for random.seed() version 1 (#3614)Raymond Hettinger2017-09-171-0/+27
| | | bpo-31482: Missing bytes support for random.seed() version 1 #3614
* bpo-31160: Fix test_random for zombie process (#3045)Victor Stinner2017-08-091-1/+7
| | | | TestModule.test_after_fork() now calls os.waitpid() to read the exit status of the child process to avoid creating a zombie process.
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-271-0/+19
| | | | | | | | | | | | * bpo-16500: Allow registering at-fork handlers * Address Serhiy's comments * Add doc for new C API * Add doc for new Python-facing function * Add NEWS entry + doc nit
* bpo-30308: Code coverage for argument in random.shuffle (#1504)csabella2017-05-111-1/+11
| | | | | | | | * bpo-30308: Code coverage for argument in random.shuffle * bpo-30308: Code coverage for argument in random.shuffle * bpo-30308: Code coverage for argument in random.shuffle
* bpo-29960 _random.Random corrupted on exception in setstate(). (#1019)bladebryan2017-04-221-0/+5
|
* mergeRaymond Hettinger2016-11-211-1/+1
|\
| * Issue #28743: Reduce memory consumption for random module testsRaymond Hettinger2016-11-211-1/+1
| |
* | mergeRaymond Hettinger2016-11-211-0/+1
|\ \ | |/