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
/
Modules
/
_randommodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40867: Remove unused include from Module/_randommodule.c (GH-20635)
Erlend Egeberg Aasland
2020-06-05
1
-1/+0
*
bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)
Victor Stinner
2020-04-29
1
-45/+0
*
bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (...
Serhiy Storchaka
2020-04-17
1
-12/+6
*
bpo-40282: Allow random.getrandbits(0) (GH-19539)
Antoine Pitrou
2020-04-17
1
-2/+5
*
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
Victor Stinner
2020-04-17
1
-6/+6
*
bpo-40286: Add randbytes() method to random.Random (GH-19527)
Victor Stinner
2020-04-17
1
-7/+58
*
bpo-39968: Convert extension modules' macros of get_module_state() to inline ...
Hai Shi
2020-03-16
1
-7/+13
*
bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897)
Victor Stinner
2020-03-10
1
-4/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-1/+1
*
bpo-38321: Fix compiler warning in _randommodule.c (GH-16512)
Victor Stinner
2019-10-01
1
-1/+1
*
Fix missing dec ref (#16158)
Dino Viehland
2019-09-15
1
-0/+1
*
bpo-38075: Port _randommodule.c to PEP-384 (GH-15798)
Dino Viehland
2019-09-13
1
-57/+92
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-2/+2
*
bpo-37021: Port _randommodule to the argument clinic (GH-13532)
Pablo Galindo
2019-05-24
1
-26/+83
*
closes bpo-35991: Fix a potential double free in Modules/_randommodule.c. (GH...
Zackery Spytz
2019-02-14
1
-1/+0
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-2/+2
*
bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad...
Oren Milman
2017-09-28
1
-2/+5
*
bpo-30592: Fixed error messages for some builtins. (#1996)
Serhiy Storchaka
2017-06-08
1
-1/+1
*
bpo-29960 _random.Random corrupted on exception in setstate(). (#1019)
bladebryan
2017-04-22
1
-1/+4
*
Update URL of Mersenne Twister Home Page (#20)
Hiroki Noda
2017-02-15
1
-3/+3
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-2/+1
*
fix error check, so that Random.seed actually uses OS randomness (closes #29085)
Benjamin Peterson
2016-12-29
1
-1/+1
*
Issue #27776: include process.h on Windows for getpid()
Victor Stinner
2016-09-07
1
-0/+3
*
os.urandom() now blocks on Linux
Victor Stinner
2016-09-06
1
-10/+46
*
replace Python aliases for standard integer types with the standard integer t...
Benjamin Peterson
2016-09-06
1
-24/+20
*
Fix typos. Reported by andportnoy on GitHub.
Berker Peksag
2016-04-29
1
-1/+1
*
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka
2015-12-25
1
-1/+1
*
Issue #24620: Random.setstate() now validates the value of state last element.
Serhiy Storchaka
2015-07-24
1
-0/+4
|
\
|
*
Issue #24620: Random.setstate() now validates the value of state last element.
Serhiy Storchaka
2015-07-24
1
-0/+4
*
|
Issue #23488: Fix a syntax error on big endian platforms.
Zachary Ware
2015-05-18
1
-1/+1
*
|
Issue #23488: Random generator objects now consume 2x less memory on 64-bit.
Serhiy Storchaka
2015-05-13
1
-70/+68
*
|
Improve struct cache locality by bring commonly accessed fields close together.
Raymond Hettinger
2015-02-20
1
-1/+1
|
/
*
Fix compiler warning on Windows 64-bit: explicit cast size_t to unsigned long
Victor Stinner
2013-11-15
1
-2/+2
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-1/+1
|
\
|
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-1/+1
*
|
Issue #18408: random_seed() now raises a MemoryError on memory allocation
Victor Stinner
2013-07-15
1
-1/+4
*
|
Issue #16674: random.getrandbits() is now 20-40% faster for small integers.
Serhiy Storchaka
2013-01-04
1
-0/+3
*
|
Simplify random_seed to use _PyLong_AsByteArray. Closes issue #16496.
Mark Dickinson
2012-12-21
1
-64/+35
|
/
*
Issue #16096: Fix several occurrences of potential signed integer overflow. ...
Mark Dickinson
2012-10-06
1
-1/+2
*
Issue #14815: Bugfix: the PyLong fed into the seed generator must be unsigned.
Larry Hastings
2012-06-24
1
-4/+5
*
Issue #14815: Use Py_ssize_t instead of long for the object hash, to
Larry Hastings
2012-06-24
1
-2/+2
*
Issue #14909: A number of places were using PyMem_Realloc() apis and
Kristjan Valur Jonsson
2012-05-31
1
-3/+4
*
tabbing no longer applicable
Benjamin Peterson
2010-08-24
1
-1/+1
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-357/+357
*
Merged revisions 72344 via svnmerge from
Mark Dickinson
2009-05-05
1
-1/+1
*
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson
2009-02-02
1
-1/+1
*
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis
2008-06-11
1
-4/+18
*
Remove defunct parts of the random module
Raymond Hettinger
2008-01-13
1
-69/+0
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes
2007-12-19
1
-2/+2
*
Merged revisions 59275-59303 via svnmerge from
Christian Heimes
2007-12-03
1
-7/+8
[next]