diff options
author | Raymond Hettinger <python@rcn.com> | 2016-09-27 04:45:57 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-09-27 04:45:57 (GMT) |
commit | 9016f2864affea83d4d2c02f4396823f8a56b394 (patch) | |
tree | bd12f48eed87079bd24d43bace81be5c46c7af21 /Misc/NEWS | |
parent | 22805ca54e1e5db4b66be1b28b0baac2b1b4b4de (diff) | |
download | cpython-9016f2864affea83d4d2c02f4396823f8a56b394.zip cpython-9016f2864affea83d4d2c02f4396823f8a56b394.tar.gz cpython-9016f2864affea83d4d2c02f4396823f8a56b394.tar.bz2 |
Issue #18844: Make the number of selections a keyword-only argument for random.choices().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -44,6 +44,10 @@ Library - Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() if pass invalid string-like object as a name. Patch by Xiang Zhang. +- Issue #18844: random.choices() now has k as a keyword-only argument + to improve the readability of common cases and the come into line + with the signature used in other languages. + - Issue #18893: Fix invalid exception handling in Lib/ctypes/macholib/dyld.py. Patch by Madison May. |