diff options
author | Ajith Ramachandran <ajithar204@gmail.com> | 2021-06-10 16:42:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 16:42:09 (GMT) |
commit | ac867f10b49322e25f34d2d8abd8e63c86834750 (patch) | |
tree | df19019a4f94682e5ed4303fe1328526c831517d /Misc | |
parent | 90cd4330329a99e52f7141db5e0a469d30088e66 (diff) | |
download | cpython-ac867f10b49322e25f34d2d8abd8e63c86834750.zip cpython-ac867f10b49322e25f34d2d8abd8e63c86834750.tar.gz cpython-ac867f10b49322e25f34d2d8abd8e63c86834750.tar.bz2 |
bpo-44357:Add `math.cbrt()` function: Cube Root (GH-26622)
* Add math.cbrt() function: Cube Root
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-06-09-08-32-39.bpo-44357.70Futb.rst | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1415,6 +1415,7 @@ Jérôme Radix Burton Radons Abhilash Raj Shorya Raj +Ajith Ramachandran Dhushyanth Ramasamy Ashwin Ramaswami Jeff Ramnani diff --git a/Misc/NEWS.d/next/Library/2021-06-09-08-32-39.bpo-44357.70Futb.rst b/Misc/NEWS.d/next/Library/2021-06-09-08-32-39.bpo-44357.70Futb.rst new file mode 100644 index 0000000..f169a46 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-06-09-08-32-39.bpo-44357.70Futb.rst @@ -0,0 +1 @@ +Added a function that returns cube root of the given number :func:`math.cbrt`
\ No newline at end of file |