diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-07-27 21:04:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-27 21:04:29 (GMT) |
commit | 6b5f1b496f0b20144592b640b9c975df43a29eb0 (patch) | |
tree | 02675047df60efacb1a5f449c1c373a7485e7330 /Misc | |
parent | 3221a63c69268a9362802371a616f49d522a5c4f (diff) | |
download | cpython-6b5f1b496f0b20144592b640b9c975df43a29eb0.zip cpython-6b5f1b496f0b20144592b640b9c975df43a29eb0.tar.gz cpython-6b5f1b496f0b20144592b640b9c975df43a29eb0.tar.bz2 |
bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH-14975)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-07-26-22-30-01.bpo-37691.1Li3rx.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-07-26-22-30-01.bpo-37691.1Li3rx.rst b/Misc/NEWS.d/next/Library/2019-07-26-22-30-01.bpo-37691.1Li3rx.rst new file mode 100644 index 0000000..048478c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-07-26-22-30-01.bpo-37691.1Li3rx.rst @@ -0,0 +1,2 @@ +Let math.dist() accept coordinates as sequences (or iterables) rather than +just tuples. |