diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-01 00:26:53 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-01 00:26:53 (GMT) |
commit | c17976e9833f3093adb1019356737e728a24f7c9 (patch) | |
tree | fd8ea78a830d3eb5978bfbe96a72401839c11ac7 /Misc | |
parent | 2a9a6b0e86320ba0793051f3050034ae4290c764 (diff) | |
download | cpython-c17976e9833f3093adb1019356737e728a24f7c9.zip cpython-c17976e9833f3093adb1019356737e728a24f7c9.tar.gz cpython-c17976e9833f3093adb1019356737e728a24f7c9.tar.bz2 |
Another crack at bug #1460340: make random.sample(dict)
work, this time by ugly brute force.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -489,6 +489,11 @@ Extension Modules Library ------- +- Bug #1460340: ``random.sample(dict)`` failed in various ways. Dicts + aren't officially supported here, and trying to use them will probably + raise an exception some day. But dicts have been allowed, and "mostly + worked", so support for them won't go away without warning. + - Bug #1445068: getpass.getpass() can now be given an explicit stream argument to specify where to write the prompt. |