Skip to content

Commit 7cec35a

Browse files
rhettingerlisroach
authored andcommitted
bpo-36324: Update comments to include the target hash sums (pythonGH-15110)
1 parent ece7f61 commit 7cec35a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/statistics.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,7 @@ def inv_cdf(self, p):
892892
q = p - 0.5
893893
if fabs(q) <= 0.425:
894894
r = 0.180625 - q * q
895+
# Hash sum: 55.88319_28806_14901_4439
895896
num = (((((((2.50908_09287_30122_6727e+3 * r +
896897
3.34305_75583_58812_8105e+4) * r +
897898
6.72657_70927_00870_0853e+4) * r +
@@ -914,6 +915,7 @@ def inv_cdf(self, p):
914915
r = sqrt(-log(r))
915916
if r <= 5.0:
916917
r = r - 1.6
918+
# Hash sum: 49.33206_50330_16102_89036
917919
num = (((((((7.74545_01427_83414_07640e-4 * r +
918920
2.27238_44989_26918_45833e-2) * r +
919921
2.41780_72517_74506_11770e-1) * r +
@@ -932,6 +934,7 @@ def inv_cdf(self, p):
932934
1.0)
933935
else:
934936
r = r - 5.0
937+
# Hash sum: 47.52583_31754_92896_71629
935938
num = (((((((2.01033_43992_92288_13265e-7 * r +
936939
2.71155_55687_43487_57815e-5) * r +
937940
1.24266_09473_88078_43860e-3) * r +

0 commit comments

Comments
 (0)