diff options
author | Oren Milman <orenmn@gmail.com> | 2017-10-02 21:31:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-02 21:31:42 (GMT) |
commit | 13da1a60f13e173f65bb0da5ab325641d5bb99ec (patch) | |
tree | a0dc6bc230ec1d119c48a0ceecf3de33ef35ed64 /Lib/test/test_random.py | |
parent | 20cbc1d29facead32c2da06c81a09af0e057015c (diff) | |
download | cpython-13da1a60f13e173f65bb0da5ab325641d5bb99ec.zip cpython-13da1a60f13e173f65bb0da5ab325641d5bb99ec.tar.gz cpython-13da1a60f13e173f65bb0da5ab325641d5bb99ec.tar.bz2 |
[2.7] bpo-31478: Prevent unwanted behavior in _random.Random.seed() in case the arg has a bad __abs__() method (GH-3596) (#3845)
Diffstat (limited to 'Lib/test/test_random.py')
-rw-r--r-- | Lib/test/test_random.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py index 90d334a..d2a4f21 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -307,6 +307,22 @@ class SystemRandom_TestBasicOps(TestBasicOps): class MersenneTwister_TestBasicOps(TestBasicOps): gen = random.Random() + @test_support.cpython_only + def test_bug_31478(self): + # _random.Random.seed() should ignore the __abs__() method of a + # long/int subclass argument. + class BadInt(int): + def __abs__(self): + 1/0 + class BadLong(long): + def __abs__(self): + 1/0 + self.gen.seed(42) + expected_value = self.gen.random() + for seed_arg in [42L, BadInt(42), BadLong(42)]: + self.gen.seed(seed_arg) + self.assertEqual(self.gen.random(), expected_value) + def test_setstate_first_arg(self): self.assertRaises(ValueError, self.gen.setstate, (1, None, None)) |