diff options
-rw-r--r-- | Lib/statistics.py | 2 | ||||
-rw-r--r-- | Lib/test/test_statistics.py | 12 |
2 files changed, 13 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) diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py index a65fbe8..9549240 100644 --- a/Lib/test/test_statistics.py +++ b/Lib/test/test_statistics.py @@ -2128,6 +2128,18 @@ class TestNormalDist(unittest.TestCase): with self.assertRaises(statistics.StatisticsError): Y.cdf(90) + def test_unary_operations(self): + NormalDist = statistics.NormalDist + X = NormalDist(100, 12) + Y = +X + self.assertIsNot(X, Y) + self.assertEqual(X.mu, Y.mu) + self.assertEqual(X.sigma, Y.sigma) + Y = -X + self.assertIsNot(X, Y) + self.assertEqual(X.mu, -Y.mu) + self.assertEqual(X.sigma, Y.sigma) + def test_same_type_addition_and_subtraction(self): NormalDist = statistics.NormalDist X = NormalDist(100, 12) |