summaryrefslogtreecommitdiffstats
path: root/Lib/statistics.py
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-02-24 06:19:01 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-02-24 06:19:01 (GMT)
commit79fbcc597dfd039d3261fffcb519b5ec5a18df9d (patch)
tree9d56ae7f0a317d315533aac7ae2efd425a9efb05 /Lib/statistics.py
parente895de3e7f3cc2f7213b87621cfe9812ea4343f0 (diff)
downloadcpython-79fbcc597dfd039d3261fffcb519b5ec5a18df9d.zip
cpython-79fbcc597dfd039d3261fffcb519b5ec5a18df9d.tar.gz
cpython-79fbcc597dfd039d3261fffcb519b5ec5a18df9d.tar.bz2
bpo-36018: Make __pos__ return a distinct instance of NormDist (GH-12009)
https://bugs.python.org/issue36018
Diffstat (limited to 'Lib/statistics.py')
-rw-r--r--Lib/statistics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/statistics.py b/Lib/statistics.py
index a73001a..bf10e19 100644
--- a/Lib/statistics.py
+++ b/Lib/statistics.py
@@ -762,7 +762,7 @@ class NormalDist:
return NormalDist(x1.mu / x2, x1.sigma / fabs(x2))
def __pos__(x1):
- return x1
+ return NormalDist(x1.mu, x1.sigma)
def __neg__(x1):
return NormalDist(-x1.mu, x1.sigma)