diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2019-09-21 04:28:49 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-21 04:28:49 (GMT) |
commit | 87d6cd3604e5c83c06339276228139f5e040b0e7 (patch) | |
tree | 8625c8ec9abe6f81b425b742d9a8e0ab2785e4e3 /Misc | |
parent | e267793aa4101b2771ed0e66aaff5743d23f59af (diff) | |
download | cpython-87d6cd3604e5c83c06339276228139f5e040b0e7.zip cpython-87d6cd3604e5c83c06339276228139f5e040b0e7.tar.gz cpython-87d6cd3604e5c83c06339276228139f5e040b0e7.tar.bz2 |
bpo-38237: Make pow's arguments have more descriptive names and be keyword passable (GH-16302)
Edit: `math.pow` changes removed on Mark's request.
https://bugs.python.org/issue38237
Automerge-Triggered-By: @rhettinger
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-09-20-14-27-17.bpo-38237.xRUZbx.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-20-14-27-17.bpo-38237.xRUZbx.rst b/Misc/NEWS.d/next/Library/2019-09-20-14-27-17.bpo-38237.xRUZbx.rst new file mode 100644 index 0000000..07e1bf7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-09-20-14-27-17.bpo-38237.xRUZbx.rst @@ -0,0 +1,2 @@ +The arguments for the builtin pow function are more descriptive. They can now +also be passed in as keywords. |