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.

Author christian.heimes
Recipients Juuso Lehtivarjo, christian.heimes
Date 2018-07-11.08:02:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531296162.34.0.56676864532.issue33729@psf.upfronthosting.co.za>
In-reply-to
Content
None of the hashlib functions are taking keyword arguments for data:

>>> hashlib.sha256(data=b'foo')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: openssl_sha256() takes no keyword arguments
>>> hashlib.blake2b(data=b'foo')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'data' is an invalid keyword argument for this function
History
Date User Action Args
2018-07-11 08:02:42christian.heimessetrecipients: + christian.heimes, Juuso Lehtivarjo
2018-07-11 08:02:42christian.heimessetmessageid: <1531296162.34.0.56676864532.issue33729@psf.upfronthosting.co.za>
2018-07-11 08:02:42christian.heimeslinkissue33729 messages
2018-07-11 08:02:42christian.heimescreate