diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-07-21 07:34:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-21 07:34:47 (GMT) |
commit | 02c91f59b6f6e720a9e89635e00c55bcf7f932a8 (patch) | |
tree | 8911ca3b47dc0da1344aacb81f5f62427d3d18e6 /Misc | |
parent | 5623ac87bbe5de481957eca5eeae06347612fbeb (diff) | |
download | cpython-02c91f59b6f6e720a9e89635e00c55bcf7f932a8.zip cpython-02c91f59b6f6e720a9e89635e00c55bcf7f932a8.tar.gz cpython-02c91f59b6f6e720a9e89635e00c55bcf7f932a8.tar.bz2 |
bpo-36324: Make internal attributes for statistics.NormalDist() private. (GH-14871)
* Make internals private
* Finish making mu and sigma private
* Add missing __hash__() method
* Add blurb
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-07-19-22-44-41.bpo-36324.1VjywS.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-07-19-22-44-41.bpo-36324.1VjywS.rst b/Misc/NEWS.d/next/Library/2019-07-19-22-44-41.bpo-36324.1VjywS.rst new file mode 100644 index 0000000..2e41211 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-07-19-22-44-41.bpo-36324.1VjywS.rst @@ -0,0 +1 @@ +Make internal attributes for statistics.NormalDist() private. |