summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-02-10 14:32:22 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-02-10 14:32:22 (GMT)
commit8b466c99329c0d422a48acfae0c20ec1e76ef314 (patch)
treee7c8e9d09315bcca4cccead6fe864c294ffee319 /Lib/test
parent1ef876cd28aa2f76edffb6e4d209c6a49b5705ef (diff)
parent1b901baee592edfdf62de2302d786bc8334f65b1 (diff)
downloadcpython-8b466c99329c0d422a48acfae0c20ec1e76ef314.zip
cpython-8b466c99329c0d422a48acfae0c20ec1e76ef314.tar.gz
cpython-8b466c99329c0d422a48acfae0c20ec1e76ef314.tar.bz2
merge heads
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_random.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py
index a9aec70..007fcb0 100644
--- a/Lib/test/test_random.py
+++ b/Lib/test/test_random.py
@@ -512,6 +512,20 @@ class TestDistributions(unittest.TestCase):
self.assertAlmostEqual(s1/N, mu, places=2)
self.assertAlmostEqual(s2/(N-1), sigmasqrd, places=2)
+ def test_von_mises_range(self):
+ # Issue 17149: von mises variates were not consistently in the
+ # range [0, 2*PI].
+ g = random.Random()
+ N = 100
+ for mu in 0.0, 0.1, 3.1, 6.2:
+ for kappa in 0.0, 2.3, 500.0:
+ for _ in range(N):
+ sample = g.vonmisesvariate(mu, kappa)
+ self.assertTrue(
+ 0 <= sample <= random.TWOPI,
+ msg=("vonmisesvariate({}, {}) produced a result {} out"
+ " of range [0, 2*pi]").format(mu, kappa, sample))
+
class TestModule(unittest.TestCase):
def testMagicConstants(self):
self.assertAlmostEqual(random.NV_MAGICCONST, 1.71552776992141)