This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Error in NormalDist.__eq__
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: rhettinger
Priority: normal Keywords: patch

Created on 2019-10-18 20:57 by rhettinger, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16840 merged rhettinger, 2019-10-18 20:59
PR 16842 merged miss-islington, 2019-10-18 21:21
Messages (3)
msg354919 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-10-18 20:57
The equality comparison has a typo that wasn't caught by the tests.
msg354920 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-10-18 21:20
New changeset 5eabec022b9a10734fcf58faad02c4d233592f64 by Raymond Hettinger in branch 'master':
bpo-38521: Fix error in NormalDist.__eq__() (GH-16840)
https://github.com/python/cpython/commit/5eabec022b9a10734fcf58faad02c4d233592f64
msg354921 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-10-18 21:41
New changeset 652a1cb0e11eb7cf0040acaf121492d2a99768d9 by Raymond Hettinger (Miss Islington (bot)) in branch '3.8':
bpo-38521: Fix error in NormalDist.__eq__() (GH-16840) (GH-16842)
https://github.com/python/cpython/commit/652a1cb0e11eb7cf0040acaf121492d2a99768d9
History
Date User Action Args
2022-04-11 14:59:21adminsetgithub: 82702
2019-10-18 21:41:38rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-10-18 21:41:22rhettingersetmessages: + msg354921
2019-10-18 21:21:00miss-islingtonsetpull_requests: + pull_request16394
2019-10-18 21:20:40rhettingersetmessages: + msg354920
2019-10-18 20:59:34rhettingersetkeywords: + patch
stage: patch review
pull_requests: + pull_request16392
2019-10-18 20:57:18rhettingercreate