diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-09-06 08:30:23 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-09-06 08:30:23 (GMT) |
commit | 13b55291ac84d2fb74f93c286a0bd5673f439e38 (patch) | |
tree | 3be269bb34eb782e9ec28a92b3f07d1b95b32c4f /Misc | |
parent | c86adb4c5c616e6aa7dcf9e59c71ba66ab5ea553 (diff) | |
download | cpython-13b55291ac84d2fb74f93c286a0bd5673f439e38.zip cpython-13b55291ac84d2fb74f93c286a0bd5673f439e38.tar.gz cpython-13b55291ac84d2fb74f93c286a0bd5673f439e38.tar.bz2 |
hashlib has two new constant attributes: algorithms_guaranteed and
algorithms_avaiable that respectively list the names of hash algorithms
guaranteed to exist in all Python implementations and the names of hash
algorithms available in the current process.
Renames the attribute new in 3.2a0 'algorithms' to 'algorithms_guaranteed'.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -17,6 +17,11 @@ Library unsupported operation is attempted (for example, writing to a file open only for reading). +- hashlib has two new constant attributes: algorithms_guaranteed and + algorithms_avaiable that respectively list the names of hash algorithms + guaranteed to exist in all Python implementations and the names of hash + algorithms available in the current process. + What's New in Python 3.2 Alpha 2? ================================= |