diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-10-18 21:20:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 21:20:35 (GMT) |
commit | 5eabec022b9a10734fcf58faad02c4d233592f64 (patch) | |
tree | 035bcaf1e28477e23804776247193ef1a4c94024 /Misc | |
parent | ecb035cd14c11521276343397151929a94018a22 (diff) | |
download | cpython-5eabec022b9a10734fcf58faad02c4d233592f64.zip cpython-5eabec022b9a10734fcf58faad02c4d233592f64.tar.gz cpython-5eabec022b9a10734fcf58faad02c4d233592f64.tar.bz2 |
bpo-38521: Fix error in NormalDist.__eq__() (GH-16840)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-18-13-57-31.bpo-38521.U-7aaM.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-18-13-57-31.bpo-38521.U-7aaM.rst b/Misc/NEWS.d/next/Library/2019-10-18-13-57-31.bpo-38521.U-7aaM.rst new file mode 100644 index 0000000..9335bdc --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-18-13-57-31.bpo-38521.U-7aaM.rst @@ -0,0 +1 @@ +Fixed erroneous equality comparison in statistics.NormalDist(). |