COMMITS
/ Modules/_randommodule.c March 10, 2020
V
bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897)
Victor Stinner committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
October 1, 2019
V
bpo-38321: Fix compiler warning in _randommodule.c (GH-16512)
Victor Stinner committed
September 15, 2019
D
Fix missing dec ref (#16158)
Dino Viehland committed
September 13, 2019
D
bpo-38075: Port _randommodule.c to PEP-384 (GH-15798)
Dino Viehland committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 24, 2019
P
bpo-37021: Port _randommodule to the argument clinic (GH-13532)
Pablo Galindo committed
February 14, 2019
Z
closes bpo-35991: Fix a potential double free in Modules/_randommodule.c. (GH-11849)
Zackery Spytz committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
September 28, 2017
June 8, 2017
S
bpo-30592: Fixed error messages for some builtins. (#1996)
Serhiy Storchaka committed
April 22, 2017
B
bpo-29960 _random.Random corrupted on exception in setstate(). (#1019)
bladebryan committed
February 15, 2017
H
Update URL of Mersenne Twister Home Page (#20)
Hiroki Noda committed
January 23, 2017
S
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka committed
December 29, 2016
B
fix error check, so that Random.seed actually uses OS randomness (closes #29085)
Benjamin Peterson committed
September 7, 2016
V
Issue #27776: include process.h on Windows for getpid()
Victor Stinner committed
September 6, 2016
V
os.urandom() now blocks on Linux
Victor Stinner committed
B
replace Python aliases for standard integer types with the standard integer types (#17884)
Benjamin Peterson committed
April 29, 2016
B
Fix typos. Reported by andportnoy on GitHub.
Berker Peksag committed
December 25, 2015
S
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka committed
July 24, 2015
S
Issue #24620: Random.setstate() now validates the value of state last element.
Serhiy Storchaka committed
S
Issue #24620: Random.setstate() now validates the value of state last element.
Serhiy Storchaka committed
May 18, 2015
Z
Issue #23488: Fix a syntax error on big endian platforms.
Zachary Ware committed
May 13, 2015
S
Issue #23488: Random generator objects now consume 2x less memory on 64-bit.
Serhiy Storchaka committed
February 20, 2015
R
Improve struct cache locality by bring commonly accessed fields close together.
Raymond Hettinger committed
November 15, 2013
V
Fix compiler warning on Windows 64-bit: explicit cast size_t to unsigned long
Victor Stinner committed
August 27, 2013
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
July 15, 2013
V
Issue #18408: random_seed() now raises a MemoryError on memory allocation
Victor Stinner committed
January 4, 2013
S
Issue #16674: random.getrandbits() is now 20-40% faster for small integers.
Serhiy Storchaka committed
December 21, 2012
M
Simplify random_seed to use _PyLong_AsByteArray. Closes issue #16496.
Mark Dickinson committed
October 6, 2012
M
Issue #16096: Fix several occurrences of potential signed integer overflow. Thanks Serhiy Storchaka.
Mark Dickinson committed
June 24, 2012
L
Issue #14815: Bugfix: the PyLong fed into the seed generator must be unsigned.
Larry Hastings committed
L
Issue #14815: Use Py_ssize_t instead of long for the object hash, to
Larry Hastings committed
May 31, 2012
K
Issue #14909: A number of places were using PyMem_Realloc() apis and
Kristjan Valur Jonsson committed
August 24, 2010
B
tabbing no longer applicable
Benjamin Peterson committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed
May 5, 2009
M
Merged revisions 72344 via svnmerge from
Mark Dickinson committed
February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
June 11, 2008
M
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis committed
January 13, 2008
R
Remove defunct parts of the random module
Raymond Hettinger committed
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
December 3, 2007
C
Merged revisions 59275-59303 via svnmerge from
Christian Heimes committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
August 31, 2007
N
Remove checking redundantly for checks of PyInt and PyLong.
Neal Norwitz committed
August 19, 2007
N
Remove _PyObject_Del
Neal Norwitz committed
July 21, 2007
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
February 1, 2007
T
Merged revisions 53451-53537 via svnmerge from
Thomas Wouters committed
January 19, 2006
N
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz committed
August 26, 2005
G
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl committed