summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-07-30 13:35:54 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-07-30 13:35:54 (GMT)
commitd49a371e9172f41c77d3ac4bd481d610bdba0fc4 (patch)
tree269575bbf161734e1481aee46488bd556e92bc30 /Misc
parent580373c46956f6712c7b66a6ac5eec67deb80c05 (diff)
parent65aa573082b64023c8bd0f33c655c7f02830cf97 (diff)
downloadcpython-d49a371e9172f41c77d3ac4bd481d610bdba0fc4.zip
cpython-d49a371e9172f41c77d3ac4bd481d610bdba0fc4.tar.gz
cpython-d49a371e9172f41c77d3ac4bd481d610bdba0fc4.tar.bz2
Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns
'SHA1' instead of 'SHA'. Add more tests for hashlib and hash object attributes
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fa34b43..818f988 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -171,6 +171,9 @@ Core and Builtins
Library
-------
+- Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns
+ 'SHA1' instead of 'SHA'.
+
- Issue #13266: Added inspect.unwrap to easily unravel __wrapped__ chains
(initial patch by Daniel Urban and Aaron Iles)