Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1626a479
Commit
1626a479
authored
May 27, 2017
by
Mariatta
Committed by
GitHub
May 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.7] bpo-29960 _random.Random corrupted on exception in setstate(). … (#1289)
(cherry picked from commit
9616a82e
)
parent
96f50205
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
1 deletion
+13
-1
Lib/test/test_random.py
Lib/test/test_random.py
+5
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_randommodule.c
Modules/_randommodule.c
+4
-1
No files found.
Lib/test/test_random.py
View file @
1626a479
...
...
@@ -311,6 +311,7 @@ class MersenneTwister_TestBasicOps(TestBasicOps):
self
.
assertRaises
(
ValueError
,
self
.
gen
.
setstate
,
(
1
,
None
,
None
))
def
test_setstate_middle_arg
(
self
):
start_state
=
self
.
gen
.
getstate
()
# Wrong type, s/b tuple
self
.
assertRaises
(
TypeError
,
self
.
gen
.
setstate
,
(
2
,
None
,
None
))
# Wrong length, s/b 625
...
...
@@ -324,6 +325,10 @@ class MersenneTwister_TestBasicOps(TestBasicOps):
self
.
gen
.
setstate
((
2
,
(
1
,)
*
624
+
(
625
,),
None
))
with
self
.
assertRaises
((
ValueError
,
OverflowError
)):
self
.
gen
.
setstate
((
2
,
(
1
,)
*
624
+
(
-
1
,),
None
))
# Failed calls to setstate() should not have changed the state.
bits100
=
self
.
gen
.
getrandbits
(
100
)
self
.
gen
.
setstate
(
start_state
)
self
.
assertEqual
(
self
.
gen
.
getrandbits
(
100
),
bits100
)
def
test_referenceImplementation
(
self
):
# Compare the python implementation with results from the original
...
...
Misc/ACKS
View file @
1626a479
...
...
@@ -1021,6 +1021,7 @@ Milan Oberkirch
Pascal Oberndoerfer
Jeffrey Ollie
Adam Olsen
Bryan Olson
Grant Olson
Koray Oner
Piet van Oostrum
...
...
Misc/NEWS
View file @
1626a479
...
...
@@ -49,6 +49,9 @@ Extension Modules
Library
-------
- bpo-29960: Preserve generator state when _random.Random.setstate()
raises an exception. Patch by Bryan Olson.
- bpo-30310: tkFont now supports unicode options (e.g. font family).
- bpo-30414: multiprocessing.Queue._feed background running
...
...
Modules/_randommodule.c
View file @
1626a479
...
...
@@ -341,6 +341,7 @@ random_setstate(RandomObject *self, PyObject *state)
int
i
;
unsigned
long
element
;
long
index
;
unsigned
long
new_state
[
N
];
if
(
!
PyTuple_Check
(
state
))
{
PyErr_SetString
(
PyExc_TypeError
,
...
...
@@ -357,7 +358,7 @@ random_setstate(RandomObject *self, PyObject *state)
element
=
PyLong_AsUnsignedLong
(
PyTuple_GET_ITEM
(
state
,
i
));
if
(
element
==
(
unsigned
long
)
-
1
&&
PyErr_Occurred
())
return
NULL
;
self
->
state
[
i
]
=
element
&
0xffffffffUL
;
/* Make sure we get sane state */
new_
state
[
i
]
=
element
&
0xffffffffUL
;
/* Make sure we get sane state */
}
index
=
PyLong_AsLong
(
PyTuple_GET_ITEM
(
state
,
i
));
...
...
@@ -368,6 +369,8 @@ random_setstate(RandomObject *self, PyObject *state)
return
NULL
;
}
self
->
index
=
(
int
)
index
;
for
(
i
=
0
;
i
<
N
;
i
++
)
self
->
state
[
i
]
=
new_state
[
i
];
Py_INCREF
(
Py_None
);
return
Py_None
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment