This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: _sha1module report "SHA" as its name
Type: behavior Stage: resolved
Components: Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: christian.heimes, gregory.p.smith, jcea, pitrou, python-dev
Priority: normal Keywords: patch

Created on 2013-07-30 13:05 by christian.heimes, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
sha1name.patch christian.heimes, 2013-07-30 13:05 review
Messages (2)
msg193930 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-07-30 13:05
I found the issue while I was working on unit tests. It looks like a honest mistake ... :)

PyUnicode_FromStringAndSize("SHA1", 3);
msg193934 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-07-30 13:36
New changeset c34c018a8390 by Christian Heimes in branch '3.3':
Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns
http://hg.python.org/cpython/rev/c34c018a8390

New changeset 5fbf23e947d8 by Christian Heimes in branch 'default':
Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns
http://hg.python.org/cpython/rev/5fbf23e947d8
History
Date User Action Args
2022-04-11 14:57:48adminsetgithub: 62799
2013-08-03 03:37:26jceasetnosy: + jcea
2013-07-30 13:46:40christian.heimessetstatus: open -> closed
resolution: fixed
stage: needs patch -> resolved
2013-07-30 13:36:20python-devsetnosy: + python-dev
messages: + msg193934
2013-07-30 13:05:12christian.heimescreate