Commit 4fec4314 authored by Christian Heimes's avatar Christian Heimes

Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns

'SHA1' instead of 'SHA'.
parent 25f043b1
...@@ -57,6 +57,9 @@ Core and Builtins ...@@ -57,6 +57,9 @@ Core and Builtins
Library Library
------- -------
- Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns
'SHA1' instead of 'SHA'.
- Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL. - Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.
- Issue #18559: Fix NULL pointer dereference error in _pickle module - Issue #18559: Fix NULL pointer dereference error in _pickle module
......
...@@ -415,7 +415,7 @@ SHA1_get_block_size(PyObject *self, void *closure) ...@@ -415,7 +415,7 @@ SHA1_get_block_size(PyObject *self, void *closure)
static PyObject * static PyObject *
SHA1_get_name(PyObject *self, void *closure) SHA1_get_name(PyObject *self, void *closure)
{ {
return PyUnicode_FromStringAndSize("SHA1", 3); return PyUnicode_FromStringAndSize("SHA1", 4);
} }
static PyObject * static PyObject *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment