FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for Modules/_randommodule.c - pythoncapi/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Modules
_randommodule.c
on
pythoncapi
User selector
Datepicker
Commit history
Commits on Sep 4, 2018
Add PySequence_Fast_GetItemRef() and PyList_GetItemRef()
Show description for e0889e9
vstinner
committed
e0889e9
View commit details
Copy full SHA for e0889e9
View code at this point
Browse repository at this point
Commits on Apr 29, 2018
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Show description for 55edd0c
siddhesh
authored and
serhiy-storchaka
committed
55edd0c
View commit details
Copy full SHA for 55edd0c
View code at this point
Browse repository at this point
Commits on Sep 28, 2017
bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad __abs__() method. (#3596)
orenmn
authored and
serhiy-storchaka
committed
d780b2d
View commit details
Copy full SHA for d780b2d
View code at this point
Browse repository at this point
Commits on Jun 8, 2017
bpo-30592: Fixed error messages for some builtins. (#1996)
Show description for 6cca5c8
serhiy-storchaka
authored
6cca5c8
View commit details
Copy full SHA for 6cca5c8
View code at this point
Browse repository at this point
Commits on Apr 22, 2017
bpo-29960 _random.Random corrupted on exception in setstate(). (#1019)
bladebryan
authored and
serhiy-storchaka
committed
9616a82
View commit details
Copy full SHA for 9616a82
View code at this point
Browse repository at this point
Commits on Feb 15, 2017
Update URL of Mersenne Twister Home Page (#20)
kubo39
authored and
methane
committed
f15fa87
View commit details
Copy full SHA for f15fa87
View code at this point
Browse repository at this point
Commits on Jan 23, 2017
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Show description for 228b12e
serhiy-storchaka
committed
228b12e
View commit details
Copy full SHA for 228b12e
View code at this point
Browse repository at this point
Commits on Dec 29, 2016
fix error check, so that Random.seed actually uses OS randomness (closes #29085)
benjaminp
committed
acc2f74
View commit details
Copy full SHA for acc2f74
View code at this point
Browse repository at this point
Commits on Sep 7, 2016
Issue #27776: include process.h on Windows for getpid()
vstinner
committed
9f2a920
View commit details
Copy full SHA for 9f2a920
View code at this point
Browse repository at this point
Commits on Sep 6, 2016
os.urandom() now blocks on Linux
Show description for e66987e
vstinner
committed
e66987e
View commit details
Copy full SHA for e66987e
View code at this point
Browse repository at this point
replace Python aliases for standard integer types with the standard integer types (#17884)
benjaminp
committed
9b3d770
View commit details
Copy full SHA for 9b3d770
View code at this point
Browse repository at this point
Commits on Apr 29, 2016
Fix typos. Reported by andportnoy on GitHub.
berkerpeksag
committed
0ac70c0
View commit details
Copy full SHA for 0ac70c0
View code at this point
Browse repository at this point
Commits on Dec 25, 2015
Issue #25923: Added the const qualifier to static constant arrays.
serhiy-storchaka
committed
2d06e84
View commit details
Copy full SHA for 2d06e84
View code at this point
Browse repository at this point
Commits on Jul 24, 2015
Issue #24620: Random.setstate() now validates the value of state last element.
serhiy-storchaka
committed
c19bb32
View commit details
Copy full SHA for c19bb32
View code at this point
Browse repository at this point
Issue #24620: Random.setstate() now validates the value of state last element.
serhiy-storchaka
committed
178f0b6
View commit details
Copy full SHA for 178f0b6
View code at this point
Browse repository at this point
Commits on May 18, 2015
Issue #23488: Fix a syntax error on big endian platforms.
Show description for c15ea4c
zware
committed
c15ea4c
View commit details
Copy full SHA for c15ea4c
View code at this point
Browse repository at this point
Commits on May 13, 2015
Issue #23488: Random generator objects now consume 2x less memory on 64-bit.
serhiy-storchaka
committed
dce0405
View commit details
Copy full SHA for dce0405
View code at this point
Browse repository at this point
Commits on Feb 20, 2015
Improve struct cache locality by bring commonly accessed fields close together.
rhettinger
committed
7a4f43a
View commit details
Copy full SHA for 7a4f43a
View code at this point
Browse repository at this point
Commits on Nov 15, 2013
Fix compiler warning on Windows 64-bit: explicit cast size_t to unsigned long
vstinner
committed
1109b54
View commit details
Copy full SHA for 1109b54
View code at this point
Browse repository at this point
Commits on Aug 27, 2013
Issue #18783: Removed existing mentions of Python long type in docstrings,
Show description for 46e1ce2
serhiy-storchaka
committed
46e1ce2
View commit details
Copy full SHA for 46e1ce2
View code at this point
Browse repository at this point
Issue #18783: Removed existing mentions of Python long type in docstrings,
Show description for 9594942
serhiy-storchaka
committed
9594942
View commit details
Copy full SHA for 9594942
View code at this point
Browse repository at this point
Commits on Jul 15, 2013
Issue #18408: random_seed() now raises a MemoryError on memory allocation
Show description for a4ced86
vstinner
committed
a4ced86
View commit details
Copy full SHA for a4ced86
View code at this point
Browse repository at this point
Commits on Jan 4, 2013
Issue #16674: random.getrandbits() is now 20-40% faster for small integers.
serhiy-storchaka
committed
d8a0bac
View commit details
Copy full SHA for d8a0bac
View code at this point
Browse repository at this point
Commits on Dec 21, 2012
Simplify random_seed to use _PyLong_AsByteArray. Closes issue #16496.
mdickinson
committed
4cd6017
View commit details
Copy full SHA for 4cd6017
View code at this point
Browse repository at this point
Commits on Oct 6, 2012
Issue #16096: Fix several occurrences of potential signed integer overflow. Thanks Serhiy Storchaka.
mdickinson
committed
c04ddff
View commit details
Copy full SHA for c04ddff
View code at this point
Browse repository at this point
Commits on Jun 24, 2012
Issue #14815: Bugfix: the PyLong fed into the seed generator must be unsigned.
larryhastings
committed
d60cd42
View commit details
Copy full SHA for d60cd42
View code at this point
Browse repository at this point
Issue #14815: Use Py_ssize_t instead of long for the object hash, to
Show description for 49c15d4
larryhastings
committed
49c15d4
View commit details
Copy full SHA for 49c15d4
View code at this point
Browse repository at this point
Commits on May 31, 2012
Issue #14909: A number of places were using PyMem_Realloc() apis and
Show description for 85634d7
kristjanvalur
committed
85634d7
View commit details
Copy full SHA for 85634d7
View code at this point
Browse repository at this point
Commits on Aug 24, 2010
tabbing no longer applicable
benjaminp
committed
d8e5f2d
View commit details
Copy full SHA for d8e5f2d
View code at this point
Browse repository at this point
Commits on May 9, 2010
Recorded merge of revisions 81029 via svnmerge from
Show description for f95a1b3
pitrou
committed
f95a1b3
View commit details
Copy full SHA for f95a1b3
View code at this point
Browse repository at this point
Commits on May 5, 2009
Merged revisions 72344 via svnmerge from
Show description for 9cc2cf7
mdickinson
committed
9cc2cf7
View commit details
Copy full SHA for 9cc2cf7
View code at this point
Browse repository at this point
Commits on Feb 2, 2009
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Show description for e94c679
mdickinson
committed
e94c679
View commit details
Copy full SHA for e94c679
View code at this point
Browse repository at this point
Commits on Jun 11, 2008
Implement PEP 3121: new module initialization and finalization API.
loewis
committed
1a21451
View commit details
Copy full SHA for 1a21451
View code at this point
Browse repository at this point
Commits on Jan 13, 2008
Remove defunct parts of the random module
rhettinger
committed
28de64f
View commit details
Copy full SHA for 28de64f
View code at this point
Browse repository at this point
Commits on Dec 19, 2007
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
tiran
committed
90aa764
View commit details
Copy full SHA for 90aa764
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL