summaryrefslogtreecommitdiffstats
path: root/Lib/random.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2013-02-10 14:17:20 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2013-02-10 14:17:20 (GMT)
commit1b901baee592edfdf62de2302d786bc8334f65b1 (patch)
tree9b14a202bed73d45f74c4a03ff281cf48262c5c8 /Lib/random.py
parent34a2a87d17ff1730946adf86d23a4737271e53b3 (diff)
parent6427358501ac5b5a33b1c0543b46f6d378cea7e3 (diff)
downloadcpython-1b901baee592edfdf62de2302d786bc8334f65b1.zip
cpython-1b901baee592edfdf62de2302d786bc8334f65b1.tar.gz
cpython-1b901baee592edfdf62de2302d786bc8334f65b1.tar.bz2
Issue #17149: merge fix from 3.3.
Diffstat (limited to 'Lib/random.py')
-rw-r--r--Lib/random.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 2ad3809..0e67ddb 100644
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -450,9 +450,9 @@ class Random(_random.Random):
u3 = random()
if u3 > 0.5:
- theta = (mu % TWOPI) + _acos(f)
+ theta = (mu + _acos(f)) % TWOPI
else:
- theta = (mu % TWOPI) - _acos(f)
+ theta = (mu - _acos(f)) % TWOPI
return theta