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: py3k-pep3137: patch for hashlib on Windows
Type: Stage:
Components: Windows Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, christian.heimes
Priority: normal Keywords: patch

Created on 2007-11-04 22:12 by amaury.forgeotdarc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
hashlib.diff amaury.forgeotdarc, 2007-11-04 22:12
Messages (2)
msg57110 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2007-11-04 22:12
On Windows, openssl is not always available, in this case python uses
its own implementation of md5, sha1 &co.
This patch correct the failing tests (test_hashlib and test_uuid), by
returning bytes instead of buffers.
msg57112 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2007-11-04 23:21
Thanks!

Applied in r58847.
History
Date User Action Args
2022-04-11 14:56:27adminsetgithub: 45728
2008-01-06 22:29:45adminsetkeywords: - py3k
versions: Python 3.0
2007-11-04 23:21:23christian.heimessetstatus: open -> closed
keywords: + py3k, patch
resolution: fixed
messages: + msg57112
2007-11-04 22:12:53amaury.forgeotdarccreate