diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2023-10-01 04:35:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-01 04:35:54 (GMT) |
commit | 62405c7867b03730f0d278ea845855692d262d44 (patch) | |
tree | a5e220ee8d106b2ea59ed23031401228c6cf25a0 /Misc | |
parent | a46e96076898d126c9f276aef1934195aac34b4e (diff) | |
download | cpython-62405c7867b03730f0d278ea845855692d262d44.zip cpython-62405c7867b03730f0d278ea845855692d262d44.tar.gz cpython-62405c7867b03730f0d278ea845855692d262d44.tar.bz2 |
gh-110150: Fix base case handling in quantiles() (gh-110151)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-09-30-12-50-47.gh-issue-110150.9j0Ij5.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-30-12-50-47.gh-issue-110150.9j0Ij5.rst b/Misc/NEWS.d/next/Library/2023-09-30-12-50-47.gh-issue-110150.9j0Ij5.rst new file mode 100644 index 0000000..3c4dde5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-09-30-12-50-47.gh-issue-110150.9j0Ij5.rst @@ -0,0 +1,2 @@ +Fix base case handling in statistics.quantiles. Now allows a single data +point. |