index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_random.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-46737: Add default arguments to random.gauss and normalvariate (GH-31360)
Zackery Spytz
2022-02-15
1
-0/+4
*
bpo-46624: Defer to 3.12: "Remove deprecated support for non-integer values" ...
Miro HronĨok
2022-02-03
1
-37/+43
*
bpo-40280: Add requires_fork test helper (GH-30622)
Christian Heimes
2022-01-16
1
-1/+1
*
Move error test to the function that needs it. Improve error message. (GH-30...
Raymond Hettinger
2021-12-10
1
-4/+0
*
bpo-42222: Improve tests for invalid argument types in randrange() (GH-29021)
Serhiy Storchaka
2021-10-19
1
-20/+11
*
bpo-42222: Remove deprecated support for non-integer values (GH-28983)
Raymond Hettinger
2021-10-16
1
-36/+39
*
bpo-44260: Do not read system entropy without need in Random() (GH-26455)
Serhiy Storchaka
2021-05-31
1
-17/+19
*
bpo-40465: Remove random module features deprecated in 3.9 (GH-25874)
Raymond Hettinger
2021-05-04
1
-13/+3
*
bpo-44018: random.seed() no longer mutates its inputs (GH-25856)
Raymond Hettinger
2021-05-03
1
-0/+5
*
bpo-37319: Improve documentation, code and tests of randrange. (GH-19112)
Serhiy Storchaka
2021-01-25
1
-3/+16
*
bpo-42944 Fix Random.sample when counts is not None (GH-24235)
jonanifranco
2021-01-18
1
-27/+27
*
bpo-42772: Step argument ignored when stop is None. (GH-24018)
Raymond Hettinger
2021-01-02
1
-0/+8
*
bpo-42222: Modernize integer test/conversion in randrange() (#23064)
Raymond Hettinger
2020-12-28
1
-0/+20
*
bpo-42008: Fix internal _random.Random() seeding for the one argument case (G...
AMIR
2020-12-21
1
-0/+9
*
bpo-42470: Do not warn on sequences which are also sets in random.sample() (G...
masklinn
2020-12-19
1
-1/+17
*
bpo-41773: Raise exception for non-finite weights in random.choices(). (GH-2...
Ram Rachum
2020-09-29
1
-0/+16
*
bpo-41052: Opt out serialization/deserialization for _random.Random (GH-21002)
Dong-hee Na
2020-06-21
1
-0/+10
*
bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)
Raymond Hettinger
2020-05-08
1
-1/+72
*
bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)
Raymond Hettinger
2020-05-02
1
-1/+2
*
Simplify choice()'s interaction with the private _randbelow() method (GH-19831)
Raymond Hettinger
2020-05-01
1
-3/+3
*
bpo-40325: Deprecate set object support in random.sample() (GH-19591)
Raymond Hettinger
2020-04-19
1
-1/+5
*
bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (...
Serhiy Storchaka
2020-04-17
1
-4/+20
*
bpo-40282: Allow random.getrandbits(0) (GH-19539)
Antoine Pitrou
2020-04-17
1
-40/+29
*
bpo-40286: Add randbytes() method to random.Random (GH-19527)
Victor Stinner
2020-04-17
1
-0/+51
*
bpo-40094: Add test.support.wait_process() (GH-19254)
Victor Stinner
2020-03-31
1
-2/+1
*
bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897)
Victor Stinner
2020-03-10
1
-1/+1
*
bpo-38881: choices() raises ValueError when all weights are zero (GH-17362)
Raymond Hettinger
2019-11-23
1
-0/+5
*
bpo-38120: Fix DeprecationWarning in test_random for invalid type of argument...
Xtreak
2019-09-12
1
-3/+9
*
Fix typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
1
-1/+1
*
bpo-36766: Typos in docs and code comments (GH-13116)
penguindustin
2019-05-06
1
-1/+1
*
bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)
Serhiy Storchaka
2019-03-05
1
-3/+2
*
bpo-30561: Sync-up expovariate() and gammavariate code (GH-1934)
leodema
2018-12-24
1
-11/+31
*
bpo-24567: Random subnormal.diff (#7954)
Raymond Hettinger
2018-06-27
1
-0/+8
*
bpo-33144: Fix choosing random.Random._randbelow implementation. (GH-6563)
Serhiy Storchaka
2018-05-08
1
-14/+64
*
bpo-33144: random.Random and subclasses: split _randbelow implementation (GH-...
Wolfgang Maier
2018-04-17
1
-15/+65
*
bpo-33203: Ensure random.choice always raises IndexError on empty sequence (G...
Wolfgang Maier
2018-04-05
1
-1/+4
*
bpo-32297: Few misspellings found in Python source code comments. (#4803)
Mike
2017-12-14
1
-1/+1
*
bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad...
Oren Milman
2017-09-28
1
-0/+11
*
bpo-31482: Missing bytes support for random.seed() version 1 (#3614)
Raymond Hettinger
2017-09-17
1
-0/+27
*
bpo-31160: Fix test_random for zombie process (#3045)
Victor Stinner
2017-08-09
1
-1/+7
*
bpo-16500: Allow registering at-fork handlers (#1715)
Antoine Pitrou
2017-05-27
1
-0/+19
*
bpo-30308: Code coverage for argument in random.shuffle (#1504)
csabella
2017-05-11
1
-1/+11
*
bpo-29960 _random.Random corrupted on exception in setstate(). (#1019)
bladebryan
2017-04-22
1
-0/+5
*
merge
Raymond Hettinger
2016-11-21
1
-1/+1
|
\
|
*
Issue #28743: Reduce memory consumption for random module tests
Raymond Hettinger
2016-11-21
1
-1/+1
*
|
merge
Raymond Hettinger
2016-11-21
1
-0/+1
|
\
\
|
|
/
|
*
Issue 28475: Improve error message for random.sample() with k < 0. (Contribu...
Raymond Hettinger
2016-11-21
1
-0/+1
*
|
merge
Raymond Hettinger
2016-11-13
1
-1/+1
|
\
\
|
|
/
|
*
Fix typos
Raymond Hettinger
2016-11-13
1
-1/+1
*
|
merge
Raymond Hettinger
2016-10-30
1
-0/+17
|
\
\
|
|
/
[next]